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.
使用此插件生成消息框。我有这个 css 的问题:
#modal{ visibility:hidden; width:360px; height:169px; padding:8px; ....... }
如果我创建一个静态 div 效果很好,#modal但是当我创建一个动态 div 时#modal + ID,样式不起作用。
#modal
#modal + ID
如何创建动态css。
如果您要更改 div,那么您也必须将 CSS 选择器更改为 #modal + Id,例如#modal1
#modal1
您可以将 css 更改为类并将该类添加到任何 div 中。css会改成如下
.modal{ visibility:hidden; width:360px; height:169px; padding:8px; ....... }
在div中添加类名
<div class="modal">