Свойства CSS: Как второй флекс-элемент растёт в три раза шире остальных?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<title>How to the second flex-item grow three times wider than the rest</title>
<style type="text/css">
#w3r {
width: 400px;
height: 100px;
border: 1px solid #FF00FF;
display: -webkit-flex;
display: flex;
}
#w3r div:nth-of-type(1) {-webkit-flex-grow: 1;}
#w3r div:nth-of-type(2) {-webkit-flex-grow: 3;}
#w3r div:nth-of-type(3) {-webkit-flex-grow: 1;}
#w3r div:nth-of-type(4) {-webkit-flex-grow: 1;}
#w3r div:nth-of-type(5) {-webkit-flex-grow: 1;}
#w3r div:nth-of-type(1) {flex-grow: 1;}
#w3r div:nth-of-type(2) {flex-grow: 3;}
#w3r div:nth-of-type(3) {flex-grow: 1;}
#w3r div:nth-of-type(4) {flex-grow: 1;}
#w3r div:nth-of-type(5) {flex-grow: 1;}
</style>
</head>
<body>
<p><strong>w3resource Tutorial</strong></p>
<div id="w3r">
<div style="background-color:#00FF00;">HTML5</div>
<div style="background-color:#3333FF;">CSS</div>
<div style="background-color:#FF6600;">PHP</div>
<div style="background-color:#FF3399;">SQL</div>
<div style="background-color:#FFCC33;">MYSQL</div>
</body>
</html>
Демонстрация в реальном времени:
Посмотрите перо flex-grow-answer от w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | нет |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code