http://jsfiddle.net/eq2kyprs/3/

如何在上面的jsfiddle中的语义UI模态窗口上设置以下内容?

width:100%
margin-left:10px;
margin-right:10px;
max-width:300px;


https://semantic-ui.com/modules/modal.html#/definition

最佳答案

将找到情态语义的样本
 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');
  });
})();

关于jquery - 语义UI模式集最大宽度?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44513737/

10-13 04:03