gpt4 book ai didi

html - 将向下箭头按钮定位到输入框的右侧

转载 作者:行者123 更新时间:2023-11-28 06:46:58 25 4
gpt4 key购买 nike

我真的需要你的帮助来解决这个棘手的问题。也许一双新的眼睛会是补救措施。我试图尝试将向下箭头按钮定位到输入框的右侧,但无济于事。如何使输入框的宽度扩展到其父元素的大小,同时将向下箭头很好地定位在它旁边。这是我的问题的图片:

enter image description here

这是期望的/最终的结果:

enter image description here

这是有问题的 HTML 和 CSS:

<!DOCTYPE html>

<html>

<head>

<style type="text/css">
* {
font-family: Segoe UI;
font-size: 9pt;
}
.dropdown dd, .dropdown dt, .dropdown ul {
margin: 0px;
padding: 0px;
}
.dropdown dd {
position: relative;
}
.dropdown:hover {
color:#5d4617;
}
.dropdown dt {
border:1px solid #d4ca9a;
width: 170px;
}
.dropdown dt input[type=text] {
border: 0;
width: 100%;
box-sizing: border-box;
}
.dropdown dt input[type=button] {
border: 0;
width: 15px;
margin: 0;
padding: 0;
position: relative;
}

.dropdown dd ul {
background:#e4dfcb;
border: 1px solid #d4ca9a;
color: #000;
display: block;
left: 0px;
padding:5px 0px;
position:absolute;
top:2px;
width:auto;
min-width: 170px;
list-style:none;
}
.dropdown dd ul li {
padding: 5px;
display: block;
}
.dropdown dd ul li:hover {
background-color: #d0c9af;
cursor: pointer;
}
</style>

<script type="text/javascript">

</script>

</head>

<body>
<dl class="dropdown">
<dt>
<input id="fileno" type="text">
<input type="button" value="&#9660;" id="btn_arrow">
</dt>
<dd>
<ul>
<li>Brazil</li>
<li>France</li>
<li>Germany</li>
<li>India</li>
<li>Japan</li>
<li>Serbia</li>
<li>United Kingdom</li>
<li>United States</li>
</ul>
</dd>
</dl>
</body>

</html>

最佳答案

定位箭头的最简单方法是使用绝对定位。为此,父级必须具有 position:relative。这样的事情应该会给你预期的结果:

.dropdown dt {
position: relative;
}
.dropdown dt input[type=button] {
position: absolute;
top: 0;
right: 0;
}

你也可以看到这个fiddle

关于html - 将向下箭头按钮定位到输入框的右侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33989405/

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