在主流的前端框架中都会有容器的概念,可是在Semantic-UI中,若是要定义容器须要经过class="ui container"
,定义容器后,浏览器会根据不一样的像素值判断当前网格的显示大小。css
经过定义容器能够发现,定义完容器的页面两边会有边距。没有定义容器的在浏览器中是百分之百的显示。html
官方文档关于容器显示的说明:前端
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Semantic UI</title> <!--使用CDN导入js和css文件--> <link href="https://cdn.bootcss.com/semantic-ui/2.3.1/semantic.css" rel="stylesheet"> <script src="https://cdn.bootcss.com/semantic-ui/2.3.1/semantic.js"></script> <script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script> </head> <body> <div class="ui container"> <div class="ui grid"> <div class="four wide column" style="background-color: #00b5ad">4格</div> <div class="eight wide column" style="background-color: #2bbbff">8格</div> <div class="four wide column" style="background-color: #5a30b5">4格</div> </div> </div> </body> </html>
效果图:jquery
在使用Semantic-UI框架的时候,能够使用ui container
来定义容器,定义完容器的页面会有边距,能够经过ui grid
定义网格达到布局的效果。经过这些操做能够很方便的编写页面的布局。浏览器