按钮定位问题的形式

时间:2014-07-05 20:26:35

标签: html css

如果您查看我的网站http://goo.gl/GchAbB,您会注意到"确定"绿色按钮没有像我希望的那样放在弹出通讯框中输入字段的左侧(另请参见下图)。我不明白的是,元素完全位于jsfiddle

所以我猜我的代码的其他部分与简报形式相冲突,但无法弄清楚是什么以及如何解决这个问题。

感谢您的帮助

修改:根据John C调查结果更新的代码

enter image description here

/******NEWSLETTER *****/

#newsletterpopup {
    display: none;
    width: 400px;
    padding:10px;
    line-height:14px;
}

#newsletterpopup h1{
    font-size: 16px;
    padding-bottom: 20px;
    font-weight:600;
        text-transform: uppercase;

}
#newsletterpopup p{
    font-size: 14px;
    font-weight:300;
    padding-bottom: 20px;

}

.non-merci {
padding-top: 20px;
    position: absolute;
    text-align: center;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    color: white;
    padding: 8px 18px;
    margin: 18px 0 0 0px;
    text-decoration: none;
        background: rgba(71, 186, 255, 0.8);

    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;

       cursor: pointer;

}


.non-merci:hover {
    background: rgba(71, 186, 255, 1);
}

.newsletter-field {
  display: block;
  width: 240px;
  height: 30px;
  float:left;
  padding-right: 10px;
  margin-bottom: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-color: #d9d9d9;
  border-right-color: #d9d9d9;
  border-bottom-color: #d9d9d9;
  border-left-color: #d9d9d9;
  border-top-style: dotted;
  border-right-style: dotted;
  border-bottom-style: dotted;
  border-left-style: dotted;
  background-color: #efefef;
  line-height: 1.38;
  color: #444444;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-direction: alternate;
    -moz-animation-direction: alternate;
    -webkit-animation-direction: alternate;
    -o-animation-direction: alternate;

    }


.newsletter-button {
  display: block;
  width: 40px;
  height: 32px;
  margin-left: 10px;
  background-color: rgb(202, 224, 84);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}


/****** END NEWSLETTER *****/

enter image description here

2 个答案:

答案 0 :(得分:0)

.newsletter-button,您有margin-left: 10px;。如果您将其更改为0,则会与字段左对齐。

答案 1 :(得分:0)

快速浏览显示您的<form>宽度为60%。这会将盒子向下推。此外,.newsletter-button上的保证金不正确。 (它继承了一个将其推下来的右边距)

[编辑] 我建议设置:

.newsletter-button { margin : 0; }
form.form-newsletter { width: 100%; }