当我单击按钮配置文件显示时,我想建立站点。但是我有问题。当我点击按钮时,即使有足够的空间,div div仍显示在身体下方。 看起来像这样: image on imgur
body,
html {
height: 100%;
width: 100%;
}
* {
margin: 0 !important;
padding: 0 !important;
}
.calendar {
width: 100%;
height: 100%;
background-color: black;
transition: all .5s;
border: 0;
margin: 0;
padding: 0;
}
.profile {
height: 100%;
background-color: white;
transition: all .5s;
float: right !important;
display: none;
}
.close {
float: right;
width: 40px;
height: 40px;
top: 0px;
right: 0px;
}
<button class="open">PROFILE</button>
<div class="calendar"></div>
<div class="profile">
<button class="close">x</button>
</div>
答案 0 :(得分:2)
添加
float: left
进入您的.calendar
级。这应该可以解决您的问题