Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道这似乎是一个愚蠢的问题,但直到现在我才不得不这样做。有没有办法在表单文本区域内将文本浮动到右侧?
不确定“浮动”是什么意思,但如果你的意思是正好对齐文本,那么你可以这样做:
textarea{ text-align:right; }
这是一个工作示例
在这里:试试这个 给你的文本区域一个 id 并在 css 上编辑它的文本对齐。像这样的东西
<textarea id="area">Test</textarea>
CSS
#area { text-align:right; }
如果您希望所有 textarea 都正确对齐,或者 musefan 答案会这样做,但如果您只想要一个 textarea,您可以使用我的。:)