<div class="box">

<p>У цьому прикладі, Ви можете змінювати значення для властивості <strong>margin-bottom</strong>.</p>

<p>Вона встановлює нижній відступ для елемента на сторінці. Результат дії властивості можна побачити за поведінкою другого блоку.</p>

<strong>margin-bottom: </strong>
<input type="number" class="input" id="num" value="24">px
<strong>;</strong>
  
</div>

<div class="block">2</div>
* {
  box-sizing: border-box;
}

body {
  font-family: monospace;
  font-size: 16px;
  line-height: 1.45;
  height: 100vh;
}

.box {
  background-color: #f7f7f7;
  padding: 16px;
  border: 8px solid #F74C32;
  margin-bottom: 24px;
  transition: all .15s ease-in;
}

.block {
  background-color: #222;
  width: 25vw;
  height: 25vh;
  line-height: 25vh;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5em;
}

.input {
  margin-bottom: 36px;
  width: 75px;
}

#select {
  position: relative;
  top: -4px;
  width: 100px;
}
$('.input').on('change', function() {
  var num = $('#num').val();
  $('.box').css( 'margin-bottom', num + 'px' );
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js