gpt4 book ai didi

css - 在 td 标签中将文本右对齐

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

将日期对齐到 td 中的最右端使用 float:right; 的盒子它适用于 chrome 但不适用于 mozilla firefox ....如何在下图中将日期对齐到最右端?<hr/> 的日期和大小的位置随内容的长度而变化。

我想在 mozilla 的同一行中保持标题在左边,日期在右边。

aligning in mozilla

使用的代码:

<table id='cs'>
<tr>
<td>
<font size='4' id='heading'><b><U>heading</U></b></font>
<font size='2' style='float:right;'><i><b >Date: </b>date</i></font><br/>
Test Content<br/><hr/>
Signature<br/>
</td></tr></table>

id cs 有以下规则:

#cs{
border: 2px solid black;
padding: 4px 17px;
width: 100%;
height: auto;
margin-right: 20px;
margin-bottom: 10px;
display: inline-block;
background: #f0f4fc;
}

id 标题有以下规则:

#heading
{
text-transform:capitalize;
}

最佳答案

正如 Skovy 在他的评论中提到的,尽量避免像您那样在 html 标签中设置样式。

字体标签也已弃用。

我写了一个示例,它使用 CSS 解决了您的问题:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<style type="text/css">
#cs {
border: 2px solid black;
padding: 4px 17px;
width: 100%;
float:right;
margin-right: 20px;
margin-bottom: 10px;
background: #f0f4fc;
}
.post-content {
<!-- style your content here -->
}
.post-header {
float: left;
font-weight: bold;
}
.post-date {
float: right;
font-size: 0.7em;
}
.post-date .label {
font-weight: bold;
}
</style>
</head>
<body>
<table id="cs">
<tr>
<td>
<div class="post-header">
Test post
</div>
<div class="post-date">
<span class="label">Date: </span>12.12.1212
</div>
<div style="clear:both"/>
<div class="post-content">
My Content
</div>
</td>
</tr>
<table>
</body>
</html>

可以看到结果here .

关于css - 在 td 标签中将文本右对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18086468/

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