gpt4 book ai didi

css - 如何在焦点上提供 ui-select 边框 CSS

转载 作者:行者123 更新时间:2023-11-28 01:32:24 26 4
gpt4 key购买 nike

我是第一次使用 ui-select 并且我尝试了它的 css 文件中的所有组合来提供像 form-control 类的边框 css 但到目前为止没有成功。

这是图像演示
enter image description here

我希望在我的 ui-select 周围有类似输入框的东西。请帮助我学习新东西。

最佳答案

为输入框和选择框添加自定义颜色

通过添加边框和轮廓,您应该获得与图片中大致相同的外观。

  1. 0.6em 填充到输入框和选择框。 (em 是文本大小的百分比)
  2. 边框和轮廓是蓝色的。轮廓略微透明。

举个例子:

form {
border: 1px solid rgba(0, 0, 0, 0.2);
}

.fancy-form-input label span {
color: red;
}

.fancy-form-input label {
display: block;
}

.fancy-form-input {
margin: 1em 1em;
}

.fancy-form-input label,
.fancy-form-input input,
.fancy-form-input select {
width: 200px;
margin: 0.3em 0;
}


/*here is the blue input*/

.fancy-form-input input,
.fancy-form-input select {
padding: 0.6em;
border: 1px solid rgba(138, 212, 238);
outline: 3px solid rgba(138, 212, 238, 0.5);
}

.fancy-form-input select {
width: calc(210px + 0.6em);
}
<form>
<div class="fancy-form-input">
<label>Sublocation Name<span>*</span></label>
<input placeholder="Enter sublocation name" />
</div>

<div class="fancy-form-input">
<label>Location<span>*</span></label>
<select>
<option>test</option>
</select>
</div>

<div class="fancy-form-input">
<label>Status<span>*</span></label>
<select>
<option>test</option>
</select>
</div>
</form>

关于css - 如何在焦点上提供 ui-select 边框 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50890488/

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