使用 CSS 禁用元素内部的文字换行


要禁用元素内部的文字换行,请使用 white-space 属性。 يمكنك محاولة تشغيل رمز التعليمات البرمجية التالي لتنفيذ خاصية المسافة البيضاء

مثال

العرض المباشر

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            white-space: nowrap;
         }
      </style>
   </head>
   <body>
      <p>
         This is demo text. This is demo text.
         This is demo text. This is demo text.
         This is demo text. This is demo text.
         This is some text. This is demo text.
      </p>
   </body>
</html>

تم التحديث في:21-يونيو-2020

489 مشاهدة

ابدأ مسيرتك المهنية المهنية

احصل على الشهادة من خلال إكمال الدورة التدريبية

ابدأ
广告
© . All rights reserved.