Home >Web Front-end >CSS Tutorial >CSS width property

CSS width property

PHPz
PHPzforward
2023-09-17 18:53:021176browse

CSS 宽度属性

#The width property is used to set the width of the box. They can take length values, percentage values, or the keyword auto. You can try running the following code to set the width −

Example

<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 CSS width property. 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
Previous article:Center image using CSSNext article:Center image using CSS