我对使用反应装置(不是反应装置)抱着新意,试图总结一下如何形成“机动”和“台站”的看法。
How would I make reactstrap render the page in one layout in "mobile" view and another way in "desktop" view?
I have done some work with media queries with plain CSS and had the page render based on the size in a different project.
我如何在反应陷阱中这样做? 我是否在<代码><、Container>、、<、Row>、
和<、Col>、
要素中总结所有内容,并确定每个集装箱的破碎点(m、md, lg)?
我试图在笔试中宣传该守则,但是在理解这些守则方面遇到麻烦。
这里是一刀子:https://reactsgil.github.io/?path=docs/components-layout-layout。
<Container>
...
<Row
md="4"
sm="2"
xs="1"
>
<Col className="bg-light border">
Column
</Col>
<Col className="bg-light border">
Column
</Col>
<Col className="bg-light border">
Column
</Col>
<Col className="bg-light border">
Column
</Col>
</Row>
</Container>
我认为,上述意思是,当屏幕为平整,但大于点时,角的排栏为4栏(每组3个电网单位,共计12个)。 当屏幕为m但大于x时,分两栏显示每个栏目(每栏6个电网单位)。 当屏幕为X或小于X时,显示每一栏,因此它需要整个12个电网空间。
感谢你们的帮助!