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.
我正在尝试将一个文本项跨越到li列表的右侧,以在文本框旁边显示一条消息。
li
<li class="name"> <label for="name">Name:</label> <input type="text" name="name" id="name" /> <span id="nameInfo"></span> </li>
消息仅显示在文本框的底部。谢谢。
使用 CSS 分配足够的宽度来命名类
.name{ width:300px; }
尝试将宽度设置为 60 像素,例如它必须以有序行呈现。