JSP 如何在字段选择中为所选选项加下划线

d8tt03nd  于 2022-12-16  发布在  其他
关注(0)|答案(1)|浏览(108)

请原谅我的初级问题,我是初学者。
如何使字段select中的选中值带下划线,而对应列表中的其他项(options)不带下划线?
不幸的是,当我使用属性style="text-decoration: none"标记select,并使用属性style="text-decoration: lined-through"标记选定的option时,在结果中,字段select中选定的值没有下划线。
另一方面,当我使用属性style="text-decoration: lined-through"标记select时,所有对应的options也会加下划线(尽管有**style="text-decoration:none"**)。

e4yzc0pl

e4yzc0pl1#

您要查找的是“:checked”。

select option:checked { 
   text-decoration: lined-through; /*or underline if you want*/
}

字符串

相关问题