gpt4 book ai didi

html - 里面的
标签

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

我正在尝试将 <span>里面的标签 <form>像这样的标签:

HTML:

<form action="myAction" method="post">
<!-- hidden input forms here -->

<span class="leftBrace">[</span>
<input type="submit" value="Evaluate" class="evaluate" />
<span class="rightBrace">]</span>
</form>

CSS:

input[type="submit"].evaluate {
background: none;
border: none;
color: #0000ff;
cursor: pointer;
padding: 0;
}
input[type="submit"].evaluate:hover {
text-decoration: underline;
}
.leftBrace {
float: left;
color: #0000ff;
}
.rightBrace {
float: right;
color: #0000ff;
}

输出:

enter image description here

如何让它看起来像:

[ Evaluate ]

我特别喜欢大括号在 submit 之外链接(因此我没有把它设为 value="[ Evaluate ]" ),因为我不希望悬停时大括号带有下划线。


更新:

我删除了 float来自 .leftBrace.rightBrace并添加了 float: leftinput[type=submit] .

input[type="submit"].evaluate {
background: none;
border: none;
color: #0000ff;
cursor: pointer;
padding: 0;
float: left;
}
input[type="submit"].evaluate:hover {
text-decoration: underline;
}
.leftBrace {
color: #0000ff;
}
.rightBrace {
color: #0000ff;
}

enter image description here

最佳答案

大括号不需要 float ,去掉它。

.leftBrace {

color: #0000ff;
}
.rightBrace {

color: #0000ff;
}

关于html - <span> 里面的 <form> 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29407355/

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