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.
我有很多模态。如何为它们中的每一个设置不同的(固定)宽度?如果除了使用 LESS 之外还有其他方法,请告诉我。谢谢。
您可以像这样覆盖内联宽度:
<div class="modal fade" id="correctModal" style="width: 400px;">
或者像这样在css中添加样式:
<div class="modal fade" id="correctModal">
CSS
#correctModal{ width:400px; }