<header>
  <h2 class="title">Document.defaultView</h2>
  <p class="description">Властивість повертає посилання на вікно, що містить документ.</p>
</header>
<main>
  <div class="result">
    <p id="textToStyle">Цей текст буде змінюватись.</p>
    <button id="btnIncrease">Збільшити розмір тексту</button>
    <button id="btnDecrease">Зменшити розмір тексту</button>
  </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);
}
document.getElementById('btnIncrease').addEventListener('click', function() {
  var textElement = document.getElementById('textToStyle');
  var style = document.defaultView.getComputedStyle(textElement, null).fontSize;
  var currentSize = parseFloat(style); 
  textElement.style.fontSize = (currentSize + 2) + 'px';
});

document.getElementById('btnDecrease').addEventListener('click', function() {
  var textElement = document.getElementById('textToStyle');
  var style = document.defaultView.getComputedStyle(textElement, null).fontSize;
  var currentSize = parseFloat(style);
  textElement.style.fontSize = (currentSize - 2) + 'px';
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.