gpt4 book ai didi

html - 在按钮中包含 HTML 箭头

转载 作者:太空宇宙 更新时间:2023-11-03 21:22:57 25 4
gpt4 key购买 nike

我正在设计一个 HTML 电子邮件,并希望在 HTML 按钮上包含一个右箭头,我求助于使用特殊字符并对其进行变换旋转。

我的问题是,现在它们出现在不同的行上。如何将文本和箭头换行以仅显示在一行中?我尝试在 td 元素上使用 whitespace:no-wrap ,但这似乎没有用。下面是代码片段。

<tr>
<td class="call-to-action" align="center">
<button type="button" class="call-to-action1" value="Schedule Online Here" style="white-space:nowrap">SCHEDULE ONLINE HERE
<h1 class="little-arrow" style="-ms-transform: rotate(270deg);transform: rotate(270deg);-webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */; color: white; font-size:14px">&#8711</h1></button>
</td>
</tr>

最佳答案

箭头在下一行中断 - 因为您正在使用 h1 作为 block 元素的箭头。只需使用 span ,它就会在一行中。

<tr>
<td class="call-to-action" align="center">
<button type="button" class="call-to-action1" value="Schedule Online Here" style="white-space:nowrap">SCHEDULE ONLINE HERE
<span class="little-arrow" style="-ms-transform: rotate(270deg);transform: rotate(270deg);-webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */; color: white; font-size:14px; display: inline-block">&#8711</span></button>
</td>
</tr>

使用 h1 使用相同的 h1 标签可以实现相同的布局。只需使用 display:inline-block 将它们放在一行中 -

.button,
.little-arrow {
display: inline-block
}

.little-arrow {
-ms-transform: rotate(270deg);
transform: rotate(270deg);
-webkit-transform: rotate(270deg);
/* Chrome, Safari, Opera */
;
color: white;
font-size: 14px;
color: red
}
<tr>
<td class="call-to-action" align="center">
<button type="button" class="call-to-action1" value="Schedule Online Here">SCHEDULE ONLINE HERE
<h1 class="little-arrow">&#8711;</h1></button>
</td>
</tr>

关于html - 在按钮中包含 HTML 箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35731264/

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