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.
我有一个 RadComboBox,我被要求让它看起来像以下格式
All ----------- Cars ----------- Airplanes ----------- Airplaned and Cars -----------
注意破折号,它们是分开的,所以如果它们中的任何一个用两行包裹它看起来正确。
RadComboBox 具有此属性,可以在 css 中覆盖
.rcbItem
但我不知道如何实现这一目标..
我会很感激任何帮助。
您是否只是想为每个项目添加虚线边框?如果是这样,请尝试在您的 CSS 中添加以下内容。
.rcbItem {border-bottom:1px dashed #000;}
替换#000为所需边框颜色的十六进制代码。
#000
试试这个
.item { border-bottom:1px dashed #000; color:2B91AF; font-size:12px; display:block; }