HTML CSS Упражнение: пусть отступы и границы не влияют на доступную ширину и высоту
Решение:
HTML-код:
<!doctype html>
<html>
<head>
<title>HTML CSS Exercise - Let padding and border not affect available width and height</title>
<style>
.container div{
/* Setting the box-sizing method: */
box-sizing:border-box;
/* Firefox still requires the -moz prefix */
-moz-box-sizing:border-box;
width:200px;
height:150px;
display:inline-block;
vertical-align:top;
}
.col1{
color:#ec8007;
background-color:#5ac4ed;
}
.col2{
padding:8px;
border:10px solid #4b6c9c;
background-color:#fff;
color:#ec8007;
}
.col3{
padding:32px;
background-color:#3d2ca5;
color:#ec8007;
}
</style>
</head>
<body>
<div class="container">
<div class="col1">Column 1</div>
<div class="col2">Column 2</div>
<div class="col3">Column 3</div>
</div>
</body>
</html>
Демонстрация в реальном времени:
Посмотрите, что Pen -padding-and-border-not -ffect -available-width-and-height-answer от w3resource ( @ w3resource ) на CodePen .
Поддерживаемый браузер
да | да | да | да | да |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code