CSS - CSS使用float-right属性时,呈现阶梯形排列的解决方案.md

参考:https://stackoverflow.com/questions/18113830/sometimes-divs-are-making-like-a-ladder

.button_show_follwing{
    
    
    float: right;
    font-size: 8px;
}

在这里插入图片描述

解决方法:

添加属性:

.clear:right;

.button_show_follwing{
    
    
    clear:right;
    float: right;
    font-size: 8px;
}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/caviar126/article/details/114238861
css