CSS
CSS 尺寸 (Dimension)
设置元素的最低高度
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p { min-height: 100px; background-color: yellow; } </style> </head> <body> <p>这段的最小高度设置为100 px。</p> </body> </html>
运行结果:
点击运行 »