gpt4 book ai didi

html - 如何在其中创建货币转换?

转载 作者:行者123 更新时间:2023-11-28 02:10:56 26 4
gpt4 key购买 nike

我被要求实现货币转换,因为类(class)作业如下所示,这是我的问题:

  1. 红色矩形中的组件叫什么?是下拉吗?但是双箭头格式是如何创建的呢?我搜索了 bootstrap 下拉菜单,但他们没有提供这样的格式(双箭头下拉菜单),而且这个作业可能也不允许我们使用 bootstrap。

/image/or5BY.png

最佳答案

您应该使用 来获取下拉列表。那只会是 window 上的一个箭头。在 Mac 上它将是双箭头。如果你想实现双箭头,你可以这样做。

body {
background: #f2f2f2;
}

.selectdiv {
position: relative;
/*Don't really need this just for demo styling*/

float: left;
min-width: 200px;
margin: 50px 33%;
}

/*To remove button from IE11, thank you Matt */
select::-ms-expand {
display: none;
}

.selectdiv:after {
content: '<>';
font: 17px "Consolas", monospace;
color: #333;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
right: 11px;
/*Adjust for position however you want*/

top: 18px;
padding: 0 0 2px;
border-bottom: 1px solid #999;
/*left line */

position: absolute;
pointer-events: none;
}

.selectdiv select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: block;
width: 100%;
max-width: 320px;
height: 50px;
float: right;
margin: 5px 0px;
padding: 0px 24px;
font-size: 16px;
line-height: 1.75;
color: #333;
background-color: #ffffff;
background-image: none;
border: 1px solid #cccccc;
-ms-word-break: normal;
word-break: normal;
}
<div class="selectdiv">
<label>
<select>
<option selected> Select Box </option>
<option>Option 1</option>
<option>Option 2</option>
<option>Last long option</option>
</select>
</label>
</div>

Here是如何完成的另一个例子。

关于html - 如何在其中创建货币转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48760100/

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