gpt4 book ai didi

html - 单击文本框 css 时制作一个像按钮一样的小图标

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

我有一个表单,当我点击文本框时,我也想像 JIRA 一样在右下角添加类似按钮的图标,并且想要插入表情符号和一些其他选项,就像在 JIRA 中一样

enter image description here

当我点击文本框时,我已经为此添加了 CSS,当我的文本框在右下角被点击时如何添加按钮,插入表情符号选项也会有帮助

.answer input:focus{
background: white;
outline: none;
border: 1px solid royalblue ;
float: bottom !important;
height: 75px;
}

最佳答案

由于 textarea 和 input 不支持 ::before::after 伪元素,最安全的做法是使用同级选择器来显示图标重点。每个包裹在一个容器元素上,所以它可以相对定位,以便将图标绝对定位在它应该在的位置

.wrapper{
display:inline-block;
position:relative;
}

textarea{
width:200px; height:150px;
}
textarea:focus + .icon{
/*here would be your icon*/
position:absolute;
bottom:10px; right:10px;
width:30px; height:30px;
border-radius:50%;
background:chartreuse;
}
<div class="wrapper">
<textarea></textarea>
<div class="icon"> </div>
</div>

关于html - 单击文本框 css 时制作一个像按钮一样的小图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48879262/

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