CSS
CSS 尺寸 (Dimension)
使用百分比来设置元素的最小宽度
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p { min-width: 80%; background-color: yellow; display: inline-block; } </style> </head> <body> <p>这个段落的最小宽度设置为80%。</p> </body> </html>
运行结果:
点击运行 »