JSFiddle - React, Tailwind, and code Playground
by secretgspot
HTML
<div>
<p>media query</p>
<p>sample</p>
</div>
CSS
body{
font-family: Myriad, Helvetica, Arial, "Meiryo", "メイリオ", sans-serif;
}
div{
margin: 1em;
padding: 1em;
font-size: 22px;
border-radius: 10px;
background: #fff;
}
/* ウインドウの幅が300px以上の時 */
@media screen and (min-width: 300px) {
div{
background: #ff9000;
color: #fff;
}
}
/* ウインドウの幅が500px以上の時 */
@media screen and (min-width: 500px) {
div{
background: #ffb700;
}
}
/* ウインドウの幅が700px以上の時 */
@media screen and (min-width: 700px) {
div{
background: #ff5600;
}
}
/* ウインドウの幅が900px以上の時 */
@media screen and (min-width: 900px) {
div{
background: #a65e00;
}
}