为什么我的<input />文本框不能放在我的模式<div>中?

时间:2019-05-30 21:34:59

标签: html css input modal-dialog

我用输入框创建了一个模态,但是它似乎不合适或看起来不正确。注意:这里有很多内容,因为我只能用整个网页代码复制该问题。 这是输入框的CSS:

input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

这是一个展示它的JSFiddle: https://jsfiddle.net/bkgt3av8/

编辑:似乎在我的style.css文件中。这是那里的东西:

.topnav {
  overflow: hidden;
  background-color: #041d44;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4CAF50;
  color: white;
}
#grid {
   overflow-y: hidden;
   width: 100%;
}
    .bottomleft {
    position: absolute;
}
a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}
#section04 a {
  padding-top: 60px;
}
#section04 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb04 2s infinite;
  animation: sdb04 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb04 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb04 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}
.coolbutton {
  color: white;
  background-color: #4CAF50;
  border-color: #ccc;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 6px 12px;
}
.info {
  padding: 20px;
}
.error {
  font-weight: bold;
  font-size: 20px;
  padding: 20px;
}
#container {
  text-align: center;
  height: 100%;
}

#disqus_thread {
    width:1000px;

}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

我们将不胜感激任何识别出什么内容的帮助。

0 个答案:

没有答案