CSS-图标的垂直对齐未正确显示

时间:2020-06-16 21:42:33

标签: javascript html css

我一直试图将垃圾箱显示在右侧,但它们放置的位置似乎不太好,我是CSS的新手,我在互联网上浏览过并且没有运气(或者我没有毫无意义)。 垃圾桶似乎与背景不成比例,因此,如果要填充标签,它将从盒子中溢出。

#container {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    width: 360px;
    background-color: #f7f7f7;
    margin: 100px auto;
}

.completed {
    color: gray;
    text-decoration: line-through;
}

body {
    font-family: Roboto;
    background: #FFAFBD;
    background: -webkit-linear-gradient(to right, #ffc3a0, #FFAFBD);  
    background: linear-gradient(to right, #ffc3a0, #FFAFBD); 

}

li {
    background-color: white;
    height: 40px;
    line-height: 40px;
    color: #666;
}

input {
    font-size: 18px;
    background-color: #f7f7f7;
    width: 100%;
    padding: 13px 13px 13px 20px ;
    box-sizing: border-box;
    color: #2980b9;
}

input:focus{
    background-color: white;
    border: 3px solid #2980b9;
    outline: none;
}

li:nth-child(2n){
    background-color: #f7f7f7;
}

span {
    height: 35px;
    width: 40px;
    display: inline-block;
    margin-right: 20px;
    margin: 0 auto;
    text-align: center;
    color: white;
    background-color: #e74c3c;
}

h1 {
    background-color: #2980b9;
    color: white;
    margin: 0;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: normal;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#plus {
    width: 20px;
    height: 20px;
    float: right;
    margin-top: 3px;
}

.remove {
    height: 20px;
    width: 15px;
}
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="assets/CSS/todo.css">
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="">
    <title>Trello</title>
</head>
<body>

    <div id="container">
        <h1>To-do List <img id="plus" src="assets/Plus.png" alt=""></h1>
        <input type="text" placeholder="Add New Todo...">

        <ul>
            <li><span><img class="remove" src="assets/Bin.png" alt=""></span> Go to potions class</li>
            <li><span><img class="remove" src="assets/Bin.png" alt=""></span> Buy New Robes</li>
            <li><span><img class="remove" src="assets/Bin.png" alt=""></span> Visit Hagrid</li>
        </ul>
    </div>


<script src="assets/JS/lib/Jquery.js"></script>
<script src="assets/JS/Custom/todos.js"></script>
</body>
</html>

非常感谢您的帮助。 enter image description here

2 个答案:

答案 0 :(得分:1)

使用 Flexbox !将<li>赋予<span>display: flex; <img>,这样您就可以控制其子元素(在本例中为li { display: flex; } span { display: flex; justify-content: center; align-items: center; margin: 0 2px 0 0; } )的位置。

npm install keytar

这是工作中的Codepen。 这是Flexbox的不错指南。

答案 1 :(得分:0)

如何使元素的间距与li高度相同,以使红色的bg完全填满?

COPY

就这样吗?

相关问题