首页 > 软件操作教程 > 编程开发 > CSS
题目内容

CSS3 简单的多媒体查询

题目答案

下面通过实例来理解多媒体查询的用法。

【例题】使用多媒体查询

代码如下:

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style>

.d1{

background: pink;

}

.d2{

background: lightblue;

}

.d3{

background: yellowgreen;

}

.d4{

background: yellow;

}

@media screen and (min-width: 800px){

.content{

width: 800px;

margin:20px auto;

}

.box{

width: 200px;

height: 200px;

float:left;

}

}

@media screen and (min-width: 500px) and (max-width: 800px){

.content{

width: 100%;

column-count: 1;

}

.box{

width: 50%;

height: 150px;

float:left;

}

}

@media screen and (max-width: 500px){

.content{

width: 100%;

column-count: 1;

}

.box{

width: 100%;

height: 100px;

}

}

</style>

</head>

<body>

<div>

<div class="box d1"></div>

<div class="box d2"></div>

<div class="box d3"></div>

<div class="box d4"></div>

</div>

</body>

</html>

image.png

网友评论(共0条评论)

请自觉遵守互联网相关政策法规,评论内容只代表网友观点!

最新评论

点击加载更多评论>>

软件操作 新人注册送三重礼

已有 22658 名学员学习以下课程通过考试

相关视频试题

最需教育客户端 软件问题一手掌握

去 App Store 免费下载 iOS 客户端