有没有办法阻止我的蓝色栏 div 停止随机出现在页面的其他位置?

问题描述 投票:0回答:1

The correct thing to happen is the blue bar at the top, wrong at the bottom.

.main_blue_bar {
    height: 20px;
    width: 100px;
    background-color: #021199;
    float: left;
    margin-left: 15px;
    position: absolute;
    bottom: 15px;
}

我尝试将位置更改为绝对位置并将底部标签更改为 15。

html css position
1个回答
0
投票

更改底部:15px;到顶部:15px;

© www.soinside.com 2019 - 2024. All rights reserved.