css min-width property
Translation results:
min
abbr.minute minute;minuto (Portuguese or Spanish=minute) (Portuguese or Spanish) minute;minority minority;miniature small
width
UK[wɪdθ] US[wɪdθ, wɪθ, wɪtθ]
n.Width; breadth
Plural: widths
css min-width propertysyntax
Function:Set the minimum width of the element.
Description: This attribute value will set a minimum limit on the width of the element. Therefore, the element can be wider than the specified value, but not narrower. Negative values are not allowed.
Note: All major browsers support the min-width attribute.
css min-width propertyexample
<html> <head> <style type="text/css"> p { min-width: 1000px } </style> </head> <body> <p>这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。</p> <img src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" /> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance