编辑代码:
查看结果 »
试一试 - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
p
{
min-width
:
150px
;
background-color
:
yellow
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
The minimum width of this paragraph is set to 150px.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> p { min-width: 150px; background-color: yellow; } </style> </head> <body> <p>The minimum width of this paragraph is set to 150px.</p> </body> </html>