Home  >  Article  >  Web Front-end  >  How to use css min-width attribute

How to use css min-width attribute

青灯夜游
青灯夜游Original
2019-05-30 15:14:243882browse

css min-width attribute is used to set the minimum width of an element; this attribute sets a minimum limit on the width of the element. Therefore, the element can be wider than the specified value, but not narrower; specifying negative values ​​is not allowed. All major browsers support the min-width attribute.

How to use css min-width attribute

How to use the css min-width attribute?

The min-width attribute sets the minimum width of the element.

Syntax:

min-width: length|%|inherit;

Attribute value:

● Length: Defines the minimum width value of the element. Default: Depends on browser.

● %: Defines the minimum width based on the percentage of the block-level object that contains it.

● Inherit: Specifies that the value of the min-width attribute should be inherited from the parent element.

Description: This attribute will set a minimum limit on the width of the element. Therefore, the element can be wider than the specified value, but not narrower; specifying negative values ​​is not allowed.

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

css min-width attribute example




 


这个段落的最小宽度设置为 500px,改变显示窗口,看看变化。这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。

How to use css min-width attribute

Rendering:

How to use css min-width attribute

The above is the detailed content of How to use css min-width attribute. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn