http://jsfiddle.net/eq2kyprs/3/
如何在上面的jsfiddle中的语义UI模式窗口中设置以下内容?
width:100%
margin-left:10px;
margin-right:10px;
max-width:300px;
答案 0 :(得分:-1)
将找到模态语义的样本 https://codepen.io/hesham-farag/pen/jwrLJd
(function() {
'use strict';
$('#demo-show-small').on('click', function() {
$('#demo-small-modal').modal('show');
});
$('#demo-show-long').on('click', function() {
$('#demo-long-modal').modal('show');
});
})();