gpt4 book ai didi

css - 如何使用 CSS 获取 Jelly Bean 样式的文本字段?

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

看看这个截图:

enter image description here

是否有可能仅使用 css(3) 在文本字段周围设置边框,该边框仅部分包裹每一侧?

最佳答案

参见代码笔:here

<div class="wrapper">
<input type="text" placeholder="text field">
</div>

<div class="wrapper">
<input type="text" placeholder="Another one">
</div>

使用以下 CSS:

* {

box-sizing: border-box;

}


body {

background: #dfdfdf;

}


input {

width: 250px;
text-transform: uppercase;
position: relative;
background: #dfdfdf;
color: #444;
padding: 5px;
border: 0;
outlne: none;
display: block;

}

input:focus {

outline:none;

}


.wrapper {

position: relative;
left: 50%;
margin-left: -125px;
margin-top: 50px;
width: 250px;
border-bottom: 1px solid #888;

}


.wrapper:before {

width: 1px;
height: 5px;
background-color: #888;
content: " ";
display: block;
position: absolute;
bottom: 0px;
left: -1px;

}

.wrapper:after {

width: 1px;
height: 5px;
background-color: #888;
content: " ";
display: block;
position: absolute;
bottom: 0px;
right: 0px;

}

.wrapper:hover::after, .wrapper:hover::before {

background: #57B8D6;
width: 2px;

}

.wrapper:hover::after {

right: 0px;

}

.wrapper:hover::before {

left: 0px;

}

.wrapper:before {

left: 0px;
z-index: 100;

}

.wrapper:hover {

border-bottom: 2px solid #57B8D6;
margin-top: 50px;
margin-left: -125px;

}

关于css - 如何使用 CSS 获取 Jelly Bean 样式的文本字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13391416/

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