即使有足够的空间,div也不会移动

时间:2019-09-16 13:54:29

标签: javascript jquery html css

当我单击按钮配置文件显示时,我想建立站点。但是我有问题。当我点击按钮时,即使有足够的空间,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>

1 个答案:

答案 0 :(得分:2)

添加

float: left

进入您的.calendar级。这应该可以解决您的问题