css 文字右对齐
时间: 2023-07-23 14:09:04 浏览: 138
css span右对齐 css li标签中span日期靠右布局实现代码
5星 · 资源好评率100%
可以使用 CSS 的 text-align 属性将文字右对齐,例如:
```css
.text-right {
text-align: right;
}
```
然后将该类应用于需要右对齐的元素即可,例如:
```html
<p class="text-right">这段文字将被右对齐。</p>
```
阅读全文