返回到:CSS 尺寸 (Dimension) | CSS教程
属性定义及使用说明
min-width属性设置元素的最小宽度。
注意: min-width属性不包括填充,边框,或页边距!
默认值: | 0 |
---|---|
继承: | no |
版本: | CSS2 |
JavaScript 语法: | object.style.minWidth=”10px” |
属性值
值 | 描述 |
---|---|
length | 定义元素的最小宽度值。默认值:取决于浏览器。 |
% | 定义基于包含它的块级对象的百分比最小宽度。 |
inherit | 规定应该从父元素继承 min-width 属性的值。 |
浏览器支持
表格中的数字表示支持该属性的第一个浏览器版本号。
属性 | 谷歌 | IE | 火狐 | 苹果 | opera |
---|---|---|---|---|---|
min-width | 1.0 | 4.0 | 1.0 | 1.0 | 7.0 |
实例
设置段落的最小宽度:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(web176.com)</title> <style> p { min-width:150px; background-color:yellow; } </style> </head> <body> <p>这个段落的最小宽度设置为 150px。</p> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/cssprop/5494.html