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 粘贴在有序列表中的“li”标签内时,该“li”的数字出现在 TextArea 的左下角而不是左上角旁边。有什么解决办法吗?网上好像没找到。。。
例子:
<ol> <li>Coffee</li> <li> <TextArea></TextArea> </li> <li>Milk</li> </ol>
会输出类似: 谢谢你的帮助......我真的没有勇气去css^^
textarea { vertical-align: top; }
jsFiddle 示例