Home > Article > Web Front-end > Set the width of the box using CSS
#The width property is used to set the width of the box. They can take the value of length, percentage, or 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 Set the width of the box using CSS. For more information, please follow other related articles on the PHP Chinese website!