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 property syntax

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 property example

<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