我的网站的CSS

时间:2017-01-26 18:52:51

标签: html css

Site

蓝色有我的div。

我想用CSS确保div和图像之间的空间和黑色顶部栏上的按钮但是我不知道怎么做,有什么想法吗?

我的CSS

.login_reg{
   float: right;
   color: #e0e0ba;
   width: 200px;
   height: 200px;
}

.login_reg button{
    color: #FFF;
    font-weight: bold;
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;
    outline:none;
}

3 个答案:

答案 0 :(得分:1)

您可以使用true来设置边框的高度并将其展开

答案 1 :(得分:1)

你可以使用clear:both以避免浮动:对下一个div的正确影响

答案 2 :(得分:0)

在div中使用margin-top,类为.login_reg`

.login_reg{
   float: right;
   color: #e0e0ba;
   width: 200px;
   height: 200px;
   margine-top: 50px;
}