Home >Web Front-end >CSS Tutorial >CSS width property
#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 −
<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!