gpt4 book ai didi

html - 如何强制文本出现在换行符的左侧?

转载 作者:太空宇宙 更新时间:2023-11-04 07:51:00 26 4
gpt4 key购买 nike

我有一个 <td>嵌套 <p> .当文本超过最大长度时,它会在新行上从右到左打印剩余的文本。 That;s an example

如何解决这个问题,使新行从右到左开始打印?这是我的代码:

.group {
border: 2px solid #FFCC00;
min-width: 250px;
width: 32.85%;
margin-bottom: 5px;
margin-left: 5px;
padding: 3px;
float: left;
}

.group article {
padding: 5px;
max-height: 350px;
overflow: auto;
}

.group article table {
width: 100%;
border-spacing: 7px;
}
<div class="group">
<article>
<header> Links</header>
<hr/>
<section>
<table>
<tbody>
<tr>
<td>
<p><a href="example.com/" target="_blank">Click here</a></p>
</td>
<td>
<p>Description </p>
</td>
</tr>
</tbody>
</table>
</section>
</article>
</div>

最佳答案

使用:

text-align: right;

将按照您的示例使文本与右侧对齐。

.group {
border: 2px solid #FFCC00;
min-width: 250px;
width: 32.85%;
margin-bottom: 5px;
margin-left: 5px;
padding: 3px;
float: left;
}

.group article {
padding: 5px;
max-height: 350px;
overflow: auto;
}

.group article table {
width: 100%;
border-spacing: 7px;
}

td.right p{
text-align:right;
}
<div class="group">
<article>
<header> Links</header>
<hr/>
<section>
<table>
<tbody>
<tr>
<td>
<p><a href="example.com/" target="_blank">Click here</a></p>
</td>
<td class="right">
<p>Description lorem ipsum dollar sit amet</p>
</td>
</tr>
</tbody>
</table>
</section>
</article>
</div>

关于html - 如何强制文本出现在换行符的左侧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47761354/

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