Как разместить изображение, перекрывающее две строки в сетке

write будет ссылаться на глобальную функцию document.write, которая полностью заменит страницу, если страница уже загружена. Используйте другое имя функции, возможно, «addTodo»:

Возможно, было бы лучше использовать placeholder , а не жестко закодированное значение Title... в поле ввода:

var count = 50;
var i = 0;
var tag = '';

function addTodo() {
  var text = document.querySelector('.text_box').value;
  console.log(text);
  if (i < 50) {
    tag += '<div class="oneLine"><li class="input_text">' + text + '</li><span class="close_box">x</span></div>';
    document.querySelector('.store_ul').innerHTML = tag;
    console.log(tag);
    i++;
  } else {
    alert("lists can't be added more than 50 works");
  }
}
input[type=text] {
  width: 500px;
  height: 40px;
  float: left;
}

#input_table {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#input_box {
  text-align: center;
  padding-bottom: 50px;
  background-color: crimson;
}

.align_center {
  display: inline-block;
  text-align: center;
}

.submit_box {
  padding: 10px;
  width: 50px;
  height: 25px;
  background: #d9d9d9;
  color: #555;
  float: left;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0;
  text-align: center;
}

body {
  background-color: gold;
}

.input_text {
  float: left;
}

.store_ul {
  margin: 0;
  padding: 0;
  text-align: right;
}

.oneLine {
  font-size: 30px;
  width: 100%;
  height: 50px;
  background-color: blue;
}

.close_box {
  padding: 5px;
  width: 50px;
  height: 25px;
  color: #555;
  cursor: pointer;
}
<head>
  <meta charset="utf-8">
  <link rel="stylesheet" type="text/css" href="main.css">
  <title>ToDoList</title>
</head>

<body>
  <script>
  </script>
  <div id="input_table">
    <div id="input_box">
      <h1 style="color:white">My To Do List</h1>
      <div class="align_center">
        <input class="text_box" type="text" placeholder="Title...">
        <span class="submit_box" onclick="addTodo()">Add</span>
      </div>
    </div>
  </div>
  <div class="output_table">
    <div class="store_box">
      <ul class="store_ul">

      </ul>
    </div>
  </div>
  <script>
  </script>

</body>

1
задан Turnip 18 January 2019 в 18:22
поделиться

2 ответа

Самый простой способ - просто добавить отрицательное нижнее поле к изображению. Просто так:

.background .top img {
  margin-bottom: -45px;
}
0
ответ дан MaZoli 18 January 2019 в 18:22
поделиться

Вы можете просто использовать top: 50px в блоке img, изменить 50px в соответствии со своими потребностями.

https://jsfiddle.net/7y91mdh4/

0
ответ дан Vu Huu Cuong 18 January 2019 в 18:22
поделиться