css max-width property


  Translation results:

max

UK[mæks] 美[mæks]

adv.At most

width

英[wɪdθ] 美[wɪdθ, wɪθ, wɪtθ]

n.Width; breadth

Plural: widths

css max-width propertysyntax

Function:Define the maximum width of the element.

Description: This attribute value will set a maximum limit on the width of the element. Therefore, the element can be narrower than the specified value, but not wider. Negative values ​​are not allowed.

Note: All major browsers support the max-width attribute.

css max-width propertyexample

<html>
<head>
<style type="text/css">
p
{
max-width: 300px
}
</style>
</head>
<body>

<p>这是一些文本。这是一些文本。这是一些文本。
这是一些文本。这是一些文本。这是一些文本。
这是一些文本。这是一些文本。这是一些文本。
这是一些文本。这是一些文本。这是一些文本。
这是一些文本。这是一些文本。这是一些文本。</p>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance

Popular Recommendations

Home

Videos

Q&A