Версия сайта для КПК

CSS max-width Property

The max-width property defines the maximum width of an element.

If the content is larger than the maximum width, it will automatically change the height of the element.

If the content is smaller than the maximum width, the max-width property has no effect.

Note: This prevents the value of the width property from becoming larger than max-width . The value of the max-width property overrides the width property.

Default value: none
Inherited: no
Animatable: yes, see individual properties. Read about animatable Try it
Version: CSS2
JavaScript syntax: object.style.maxWidth=»600px» Try it

Browser Support

The numbers in the table specify the first browser version that fully supports the property.

CSS Syntax

Property Values

Value Description Demo
none No maximum width. This is default Play it »
length Defines the maximum width in px, cm, etc. Read about length units Play it »
% Defines the maximum width in percent of the containing block Play it »
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

More Examples

Example

Set the maximum width of a

element to 50% of the container:

Источник

max-width

Устанавливает максимальную ширину элемента. Значение ширины элемента будет вычисляться в зависимости от значений установленных свойств width , max-width и min-width . В табл. 1 показано, чем руководствуется браузер при совместном использовании указанных стилевых свойств.

Табл. 1. Ширина элемента

Значения свойств Ширина
min-width width max-width width
width max-width width
width > max-width max-width
min-width > width > max-width min-width
min-width > width max-width min-width

Данные из таблицы следует понимать следующим образом. Если значение ширины ( width ) больше значения max-width , то ширина элемента принимается равной значению max-width .

Синтаксис

max-width: значение | проценты | none | inherit

Значения

В качестве значений принимаются пикселы (px), проценты (%) и другие единицы измерения, принятые в CSS. Отрицательные значения не допускаются.

none Отменяет действие этого свойства. inherit Наследует значение родителя.

HTML5 CSS2.1 IE Cr Op Sa Fx

       

Текст заголовка

Текст примера

В данном примере ширина страницы ограничена размером 320 пикселов для всех наладонных устройств. К ним относятся КПК, смартфоны и другие устройства, способные отображать HTML-документы.

Объектная модель

[window.]document.getElementById(» elementID «).style.maxWidth

Браузеры

Internet Explorer до версии 7.0 включительно не поддерживает значение inherit .

Источник

max-width

The max-width CSS property sets the maximum width of an element. It prevents the used value of the width property from becoming larger than the value specified by max-width .

Try it

max-width overrides width , but min-width overrides max-width .

Syntax

/* value */ max-width: 3.5em; /* value */ max-width: 75%; /* Keyword values */ max-width: none; max-width: max-content; max-width: min-content; max-width: fit-content(20em); /* Global values */ max-width: inherit; max-width: initial; max-width: revert; max-width: revert-layer; max-width: unset; 

Values

Defines the max-width as an absolute value.

Defines the max-width as a percentage of the containing block’s width.

No limit on the size of the box.

The intrinsic preferred max-width .

The intrinsic minimum max-width .

Uses the fit-content formula with the available space replaced by the specified argument, i.e. min(max-content, max(min-content, argument)) .

Accessibility concerns

Ensure that elements set with a max-width are not truncated and/or do not obscure other content when the page is zoomed to increase text size.

Formal definition

Initial value none
Applies to all elements but non-replaced inline elements, table rows, and row groups
Inherited no
Percentages refer to the width of the containing block
Computed value the percentage as specified or the absolute length or none
Animation type a length, percentage or calc();

Formal syntax

max-width =
none |
|
min-content |
max-content |
fit-content( )

=
|

Examples

Setting max width in pixels

In this example, the «child» will be either 150 pixels wide or the width of the «parent,» whichever is smaller.

HTML

div id="parent"> div id="child"> Fusce pulvinar vestibulum eros, sed luctus ex lobortis quis. div> div> 

CSS

#parent  background: lightblue; width: 300px; > #child  background: gold; width: 100%; max-width: 150px; > 

Result

Specifications

Browser compatibility

BCD tables only load in the browser

See also

Found a content problem with this page?

This page was last modified on Jul 18, 2023 by MDN contributors.

Your blueprint for a better internet.

MDN

Support

Our communities

Developers

Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998– 2023 by individual mozilla.org contributors. Content available under a Creative Commons license.

Источник

Читайте также:  Php mysqlnd or php mysql
Оцените статью