CSS
CSS 尺寸 (Dimension)
使用百分比来设置元素的最大宽度
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p { max-width: 20%; background-color: yellow; } </style> </head> <body> <p>This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.</p> </body> </html>
运行结果:
点击运行 »