<div class="box">

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

<p>Вона встановлює лівий відступ для елемента на сторінці.</p>

<strong>margin-left: </strong>
<input type="number" class="input" id="num" value="24">px
<strong>;</strong>
  
</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-left: 24px;
  transition: all .15s ease-in;
}

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

#select {
  position: relative;
  top: -4px;
  width: 100px;
}
$('.input').on('change', function() {
  var num = $('#num').val();
  $('.box').css( 'margin-left', 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