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; }