Свойства CSS: Как указать, что элементы деления должны иметь отступ и рамку, включенные в элемент?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<title>How to specify that division elements should have padding and border included in the element</title>
<style type="text/css">
.div1 {
width: 300px;
height: 100px;
border: 1px solid #FF0000;
}
.div2 {
width: 300px;
height: 100px;
padding: 50px;
border: 1px solid #4364FF;
}
</style>
</head>
<body>
<p>w3resource Tutorial</p>
<div class="div1">Box-size: smaller (width is 300px and height is 100px).</div>
<br>
<div class="div2">Box size: bigger (width is also 300px ,height is 100px and padding 50px).</div>
</body>
</html>
Демонстрация в реальном времени:
См. Ответ на вопрос «Размер коробки пера» от w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | да |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code