gpt4 book ai didi

html - 表单中的按钮定位问题

转载 作者:行者123 更新时间:2023-11-28 10:04:49 24 4
gpt4 key购买 nike

如果你看我的网站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

最佳答案

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

[编辑]我建议设置:

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

关于html - 表单中的按钮定位问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24590305/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com