PHP前端开发

使用 CSS 设置框的宽度

百变鹏仔 3个月前 (09-20) #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>