<div class="container">
<div id="description">
<h2>Приклад 2: визначення ширини елемента за допомогою CSS-функції pow()</h2>
<p>Цей приклад показує визначення ширини елемента за допомогою CSS-функції pow().</p>
</div>
<div id="result">
<div class="box"></div>
<div class="box resized"></div>
</div>
</div>
#description {
background-color: #f2f2f2;
padding: 20px;
text-align: left;
font-family: Arial, sans-serif;
margin-bottom: 50px;
}
#description h2 {
font-size: 24px;
margin-bottom: 10px;
}
#description p {
font-size: 16px;
margin-bottom: 0;
}
#result {
display: flex;
justify-content: center;
}
.box {
width: 200px;
height: 200px;
background-color: blue;
}
.box.resized {
width: pow(200, 2);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.