gpt4 book ai didi

wordpress - 联系表单提交按钮定位

转载 作者:行者123 更新时间:2023-11-28 03:04:13 25 4
gpt4 key购买 nike

这是我的网站:

http://cvkj.agencialosnavegantes.cl/

我在页面底部有一个联系表单,我试图将提交按钮放在文本框旁边,但我很费力。

这是我的初始 CSS:

#enviarbajo {
background:url(http://cvkj.agencialosnavegantes.cl/wp-content/uploads/2017/08/paper-plane-2.png) no-repeat;
background-color: #564585;
width:40px;
height:40px;
padding:0px 0 4px 0;
border:none; text-indent: -1000em; cursor:pointer;
border-radius: 0;
margin: 5%;
position: relative;
left: 35%;

}

举报帖子周五下午 01:00 发布你好

这是我的网站:

http://cvkj.agencialosnavegantes.cl/

我在页面底部有一个联系表单,我试图将提交按钮放在文本框旁边,但我很费力。

这是我的初始 CSS:

环境{

background:url(http://cvkj.agencialosnavegantes.cl/wp-content/uploads/2017/08/paper-plane-2.png) no-repeat;
background-color: #564585;
width:40px;
height:40px;
padding:0px 0 4px 0;
border:none; text-indent: -1000em; cursor:pointer;
border-radius: 0;
margin: 5%;
position: relative;
left: 35%;

}然后我尝试使用媒体查询定位按钮,但我无法将按钮放在我想要的位置

@media (max-width: 768px){
#enviarbajo {
position: relative;
right: 100px;
}
}

下面的其他媒体查询:

@media only screen and (max-width: 500px) {
#enviarbajo {
position: relative;
right: 50px;
}

有没有更有效的方法?

最佳答案

当您使用固定宽度的按钮时,有 2 个不错的选择,而不是使用宽度为 75% 和 25% 的 div。在这两种解决方案中,都使用 40px 作为按钮宽度。

第一个解决方案

对于第一个 div 使用计算宽度:calc(100% - 40px)

#footer-widgets form.wpcf7-form div:nth-child(2){
width: calc(100% - 40px);
}
#footer-widgets form.wpcf7-form div:nth-child(2) > span{
margin: 0;
}
#footer-widgets form.wpcf7-form div:nth-child(2) input{
width: 100%;
}

#footer-widgets form.wpcf7-form div:nth-child(3){
width: 40px;
}

第二种解决方案

使用内边距(40px)和按钮的绝对定位

#footer-widgets form.wpcf7-form {
position: relative;
}
#footer-widgets form.wpcf7-form div:nth-child(2){
width: 100%;
padding-right: 40px;
}
#footer-widgets form.wpcf7-form div:nth-child(2) > span{
margin: 0;
}
#footer-widgets form.wpcf7-form div:nth-child(2) input{
width: 100%;
}

#footer-widgets form.wpcf7-form div:nth-child(3){
width: 40px;
position: absolute;
top:0;
right: 0;
}

关于wordpress - 联系表单提交按钮定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46025639/

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