<header>
  <h2 class="title">element.style.borderBottomWidth</h2>
  <p class="description">Встановлює або змінює ширину нижньої рамки HTML-елемента.</p>
</header>
<main>
  <div class="result">
    <button id="increaseWidthButton">Збільшити ширину рамки</button>
    <button id="decreaseWidthButton">Зменшити ширину рамки</button>
    <div id="box" class="box">Ширина нижньої рамки</div>
  </div>
</main>
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: monospace;
}

header {
  background-color: #f1f1f1;
  margin-bottom: 25px;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
  -moz-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;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
  box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}

.box {
  width: 200px;
  height: 100px;
  margin-top: 20px;
  text-align: center;
  line-height: 100px;
  background-color: lightblue;
  border-bottom: 2px solid black; /* Початкова рамка */
}
document.getElementById('increaseWidthButton').addEventListener('click', function() {
  let box = document.getElementById('box');
  let currentWidth = parseInt(window.getComputedStyle(box).borderBottomWidth);
  box.style.borderBottomWidth = (currentWidth + 2) + 'px';
});

document.getElementById('decreaseWidthButton').addEventListener('click', function() {
  let box = document.getElementById('box');
  let currentWidth = parseInt(window.getComputedStyle(box).borderBottomWidth);
  if (currentWidth > 2) {
    box.style.borderBottomWidth = (currentWidth - 2) + 'px';
  }
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.