<header>
<h2 class="title">element.style.captionSide</h2>
<p class="description">Встановлює розташування підпису таблиці відносно її тіла</p>
</header>
<main>
<div class="result">
<table id="interactiveTable" border="1">
<caption id="tableCaption">Підпис таблиці</caption>
<tr>
<th>Стовпець 1</th>
<th>Стовпець 2</th>
</tr>
<tr>
<td>Дані 1</td>
<td>Дані 2</td>
</tr>
</table>
<div>
<button id="moveTop">Розташувати зверху</button>
<button id="moveBottom">Розташувати знизу</button>
</div>
</div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: monospace;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
button {
margin-top: 15px;
margin-right: 5px;
padding: 10px;
border: none;
background-color: #007BFF;
color: white;
cursor: pointer;
font-size: 14px;
}
button:hover {
background-color: #0056b3;
}
document.getElementById('moveTop').addEventListener('click', function() {
let table = document.getElementById('interactiveTable');
let caption = table.caption || table.createCaption();
caption.textContent = 'Підпис таблиці';
caption.style.captionSide = 'top';
});
document.getElementById('moveBottom').addEventListener('click', function() {
let table = document.getElementById('interactiveTable');
let caption = table.caption || table.createCaption();
caption.textContent = 'Підпис таблиці';
caption.style.captionSide = 'bottom';
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.