Jump to content

DivMan

User
  • Posts

    1,734
  • Joined

  • Last visited

  • Days Won

    20

Community Answers

  1. DivMan's post in Из input в массив was marked as the answer   
    <input class="numUser" type = 'number' min = '0' max = '50' size = '50' > <input class="btn" type="button" value="Добавить"> <script> var arr = []; var input = document.querySelector('.numUser'); var btn = document.querySelector('.btn'); btn.addEventListener('click', function(){ if(input.value == '') { alert('Введите число.'); return; } var digit = Number(input.value); if(digit >= 0 && digit <= 50) { arr.push(digit); } else { alert('Минимум 0, максимум 50.'); } console.log(arr); }); </script>  
  2. DivMan's post in Раскритикуйте вёрстку was marked as the answer   
    Сделай отступы, а то при сужении экрана, всё впритык 

     
  3. DivMan's post in Помогите сверстать плейлист! was marked as the answer   
    делаешь таблицу, создаёшь 2 строки засовываешь 2 ячейки и объединяешь 2 правые строки 
  4. DivMan's post in Простая задача на js was marked as the answer   
    var a = "7  13  100" 
    console.log(a)
  5. DivMan's post in Приоритеты классов was marked as the answer   
    То, что ниже, то и приоритетний. 
    Он не остаётся 180, меняется на 200. 
     
    http://codepen.io/anon/pen/Bjpday
  6. DivMan's post in увеличения блока при новедений was marked as the answer   
    зачем в li вкладывать div? 
    display: inline-block; и float: left; не совместимы
    и дай весь код
  7. DivMan's post in Скажите,пожалуйста,как сделать фон меню шире? was marked as the answer   
    http://nnm-club.me/forum/viewtopic.php?t=761428
    http://nnm-club.me/forum/viewtopic.php?t=870547
    http://nnm-club.me/forum/viewtopic.php?t=899131
    http://nnm-club.me/forum/viewtopic.php?t=927075
  8. DivMan's post in шрифты was marked as the answer   
    искать нормально дизайнера 
  9. DivMan's post in Блоки распадаются was marked as the answer   
    http://codepen.io/anon/pen/PqmMWw
     
    Не забывай про clear
  10. DivMan's post in Убрать отступ после section was marked as the answer   
    h2 {margin: 0;}
  11. DivMan's post in Длинное тире was marked as the answer   
    измени на короткое, заменив — на –
  12. DivMan's post in верстка DIV контейнеров was marked as the answer   
    http://jsfiddle.net/j9fcjtvo/
  13. DivMan's post in Неправильное отображение кнопки в Firefox was marked as the answer   
    box-sizing используете? 
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy