SOURCE

console 命令行工具 X clear

                    
>
console
<ul>
    <li class="one"><img src=""/></li>
    <li class="two">
        展示<br/>
        日期
    </li>
    <li class="three">
        <a href="#">详情</a>
    </li>
</ul>
ul{
    width: 100px;
    height: 120px;
    /* float: left; */
    margin-left: 10px;
    list-style: none;
}

li{
    /* overflow: hidden; */
}

.one{
    width:100px;
    height: 60px;
    background: yellow;
}
.two{
    width: 40px;
    height: 60px;
    display: inline-block;
    background: blueviolet;
    font-size: 10px;
    text-align: center;
    box-sizing: border-box;
}
.three{
     width: 40px;
    height: 60px;
    display: inline-block;
    background: aqua;
    font-size:9px;
    box-sizing: border-box;
}