首页 >web前端 >css教程 >CSS 宽度属性

CSS 宽度属性

PHPz
PHPz转载
2023-09-17 18:53:021174浏览

CSS 宽度属性

width属性用于设置盒子的宽度。它们可以取长度值、百分比值或关键字auto。您可以尝试运行以下代码来设置宽度 −

示例

<html>
   <head>
   </head>
   <body>
      <p style = "width:200px; height:50px; border:2px solid green; padding:15px; margin:20px;">
         This paragraph is 200pixels wide and 50 pixels high
      </p>
   </body>
</html>

以上是CSS 宽度属性的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除