1. 使用`textalign`属性: ```html .rightalign { textalign: right; } 这是靠右对齐的文本。 ```
2. 使用`float`属性: ```html .floatright { float: right; } 这是靠右对齐的文本。 ```
3. 使用`flex`布局: ```html .flexcontainer { display: flex; justifycontent: flexend; } 这是靠右对齐的文本。 ```
4. 使用`grid`布局: ```html .gridcontainer { display: grid; justifycontent: end; } 这是靠右对齐的文本。 ```
5. 使用`margin`属性: ```html .marginright { marginleft: auto; } 这是靠右对齐的文本。 ```
6. 使用`position`属性: ```html .positionright { position: absolute; right: 0; } 这是靠右对齐的文本。 ```
根据你的具体需求,你可以选择适合的CSS样式来实现靠右对齐。
```html