gpt4 book ai didi

html - 如何使用 CSS 和 HTML 在圆圈上添加文本?

转载 作者:行者123 更新时间:2023-12-04 07:25:51 24 4
gpt4 key购买 nike

Right now this is my timer
I want the timer to look like the picture below with the word "Stop"
以上是我的计时器目前的样子。
我想将“停止”这个词添加到我的计时器中,但我不知道如何。
请记住,它实际上是一个输入文本,文本是时间本身。我想在时间上添加停止这个词。
HTML代码:

<input type="text" name="" value="Start" id="">
CSS代码:
  input[type=text]:focus {
height: 150px;
width: 150px;
background-color: white;
caret-color: transparent;
border-radius: 50%;
display: inline-block;
border: none;
border-style: none;
text-align: center;
font-size: x-large;
box-shadow: inset 0px 0px 0px 10px #FF8D3A;
}

最佳答案

您可以使用绝对定位:

input[type=text]:focus {
height: 150px;
width: 150px;
background-color: white;
caret-color: transparent;
border-radius: 50%;
display: inline-block;
border: none;
border-style: none;
text-align: center;
font-size: x-large;
box-shadow: inset 0px 0px 0px 10px #FF8D3A;
}
input[type=text]:focus + .notice{
display:block;
}

.group {
position: relative;
}

.notice {
color: #FF8D3A;
font-size: 30px;
position: absolute;
left: 40px;
top: 30px;
display:none;
}
<div class="group">
<input type="text" name="" value="Start" id="">
<span class="notice">STOP</span>
</div>

关于html - 如何使用 CSS 和 HTML 在圆圈上添加文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68218093/

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