我正在尝试使用 vue-material 框架创建一个四行布局,每行包含两列。
布局应该是响应式的
当视口大小等于或小于 600 像素时,列应相互堆叠。
列应该有这样的正常布局:
未堆叠时的图像。
当我减小屏幕尺寸时,此内容不会堆叠。
这是代码 | HTML
<div id="app">
<div class="edit">
<h1 class="md-display-3">Connect to be more</h1>
<h2 class="md-subhead">Always be aware of the state of your business </h2>
</div>
<div id="canvas">
<md-layout md-row md-columns id="rightColumn">
<md-layout md-column>
<h1 class="" id="entitle">Connect soft documents</h1>
</md-layout>
<md-layout md-column>
<h1 class="" id="entitle">Connect soft documents</h1>
</md-layout>
</md-layout>
</div>
</div>
这是代码 | CSS
.edit {
text-align: center;
font-family: Heiti SC;
}
#entitle {
line-height: 1.2em;
}
.md-display-3 {
font-family: Heiti SC;
}
/* media queries */
/* tablet */
@media screen and (max-width: 600px) {
.md-column {
float: none !important;
margin: auto;
text-align: center;
width: 46%;
}
}
#rightColumn {
background-color: aqua;
font-family: Heiti SC;
}