Home  >  Article  >  Web Front-end  >  Set the width of the box using CSS

Set the width of the box using CSS

WBOY
WBOYforward
2023-08-26 20:29:23778browse

使用 CSS 设置框的宽度

#The width property is used to set the width of the box. They can take the value of length, percentage, or keyword auto.

Example

You can try running the following code to set the width -

<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>

The above is the detailed content of Set the width of the box using CSS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete