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.
我最近升级了一起使用的 simpleform 和 bootstrap。我的必填字段现在在星号下方有省略号,当用户悬停时,他们会得到一个工具提示。
如何自定义或删除该行为?
我刚刚制作了椭圆的包装类display: none。
display: none
如果您只是隐藏缩写,则会丢失有关所需字段的信息。您需要做的是正确设置缩写的样式,例如去掉省略号:
/** CUSTOMIZE SIMPLEFORM SHITTY STYLINGS **/ abbr[title='required'] { border-bottom: none; }