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.
是否可以在里面包装长文本?
<select><option value="1">A very long text that needs to be wrapped</option></select>
未经测试..但您可以尝试为该选项分配一个 id。
<option id="longtext" value="1">
然后在css中尝试类似
#longtext { width: 50%; }
或者
#longtext { width: 200px; }
#longtext { width: 300px; height: 200px; }