CSS - Media Query
Media Query
HTML PART
<div class="jumbotron jumbotron-fluid text-center" style="min-height: 500px;background-color:grey">
<h1>6_7_media query: Window width: <span id="winwidth"></span></h1>
</div>$(window).on('resize', function() {
var winw = $(window).width();
console.log(winw);
$("#winwidth").html(winw);
});CSS
@media screen and (min-width: 768px) {
.jumbotron {
background-color: gray;
color: white;
}
}
@media screen and (max-width: 768px) {
.jumbotron {
background-color: coral;
color:blue;
}
}
@media screen and (max-width: 480px) {
.jumbotron {
background-color: dodgerblue;
}
h1 {
color: red;
}
}
<CodePen>
Detect devices
Last updated