CSS练习题(二)

简介: CSS练习题

CSS练习题(一)https://developer.aliyun.com/article/1383124


4、相对定位、绝对定位、浮动定位、页面效果如下:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>设置网页元素叠加显示</title>
<link href="style/2-10.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="box"><img src="images/21003.jpg" width="575" height="359"  alt=""/>
  <div id="pic01">
    <img src="images/21004.png" alt="" />
  </div>
</div>
</body>
</html>
@charset "utf-8";
/* CSS Document */
* {
  margin: 0px;
  padding: 0px;
}
body {
  font-family: 微软雅黑;
  font-size: 14px;
  color: #FFF;
  line-height: 30px;
  background-image: url(../images/21001.jpg);
  background-repeat: no-repeat;
  background-position: center -100px;
}
#box {
  width: 575px;
  height: 359px;
  margin: 90px auto 0px auto;
  background-image: url(../images/21002.png);
  background-repeat: no-repeat;
  padding: 28px 92px 128px 92px;
}
#pic01 {
  position:relative;
  top:-235px;
  left:265px;
}

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>设置网页元素固定在右侧显示</title>
<link href="style/2-11.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="box">我们的作品<br>
  <img src="images/21102.png" width="600" height="400"  alt=""/>
</div>
<div id="pic">
  <img src="images/21103.png" alt="" />
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>设置网页元素固定在右侧显示</title>
<link href="style/2-11.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="box">我们的作品<br>
  <img src="images/21102.png" width="600" height="400"  alt=""/>
</div>
<div id="pic">
  <img src="images/21103.png" alt="" />
</div>
</body>
</html>

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>制作作品列表</title>
<link href="style/2-13.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="box">
  <div id="menu"><img src="images/21303.png" width="124" height="50" alt="" /><img src="images/21304.png" width="124" height="50" alt="" /><img src="images/21305.png" width="124" height="50" alt="" /><img src="images/21306.png" width="124" height="50" alt="" /><img src="images/21307.png" width="124" height="50" alt="" /></div>
  <div id="bottom">
    <div id="pic"><img src="images/21309.jpg" width="180" height="96" alt="" /></div>
    <div id="pic01"><img src="images/21310.jpg" width="180" height="96" alt="" /></div>
    <div id="pic02"><img src="images/21311.jpg" width="180" height="96" alt="" /></div>
    <div id="pic"><img src="images/21312.jpg" width="180" height="96" alt="" /></div>
    <div id="pic01"><img src="images/21313.jpg" width="180" height="96" alt="" /></div>
    <div id="pic02"><img src="images/21314.jpg" width="180" height="96" alt="" /></div>
  </div>
</div>
</body>
</html>
@charset "utf-8";
/* CSS Document */
*{
  margin:0px;
  padding:0px;
}
body{
  background-color:#dde1e4;
  background-image:url(../images/21301.jpg);
  background-repeat:no-repeat;
  background-position:center top;
}
#box{
  width:1100px;
  height:auto;
  overflow:hidden;
  margin:0px auto;
}
#menu{
  width:100%;
  height:270px;
  background-image:url(../images/21302.png);
  background-repeat:no-repeat;
  background-position:30px 30px;
  text-align:right;
}
#bottom{
  width:616px;
  height:340px;
  background-image:url(../images/21308.jpg);
  background-repeat:no-repeat;
  padding:10px;
  margin-left:20px;
  margin-bottom:20px;
}
#pic{
  width: 180px;
  height: 96px;
  margin: 4px;
  background-color: #CCC;
  padding: 8px;
  float:left;
}
#pic01{
  width: 180px;
  height: 96px;
  margin: 4px;
  background-color: #CCC;
  padding: 8px;
  float:left;
}
#pic02{
  width: 180px;
  height: 96px;
  margin: 4px;
  background-color: #CCC;
  padding: 8px;
  float:left;
}
相关文章
|
7月前
|
移动开发 前端开发 JavaScript
HTML+CSS练习题【详解】
HTML+CSS练习题【详解】
189 0
|
4月前
|
前端开发
2s 利用 HTML+css动画实现企业官网效果
2s 利用 HTML+css动画实现企业官网效果
|
23天前
|
前端开发 测试技术 定位技术
如何利用HTML和CSS构建企业级网站的全过程。从项目概述到页面结构设计,再到HTML结构搭建与CSS样式设计,最后实现具体页面并进行优化提升,全面覆盖了网站开发的关键步骤
本文深入介绍了如何利用HTML和CSS构建企业级网站的全过程。从项目概述到页面结构设计,再到HTML结构搭建与CSS样式设计,最后实现具体页面并进行优化提升,全面覆盖了网站开发的关键步骤。通过实例展示了主页、关于我们、产品展示、新闻动态及联系我们等页面的设计与实现,强调了合理布局、美观设计及用户体验的重要性。旨在为企业打造一个既专业又具吸引力的线上平台。
46 7
|
23天前
|
前端开发 JavaScript 搜索推荐
HTML与CSS在Web组件化中的核心作用及前端技术趋势
本文探讨了HTML与CSS在Web组件化中的核心作用及前端技术趋势。从结构定义、语义化到样式封装与布局控制,两者不仅提升了代码复用率和可维护性,还通过响应式设计、动态样式等技术增强了用户体验。面对兼容性、代码复杂度等挑战,文章提出了相应的解决策略,强调了持续创新的重要性,旨在构建高效、灵活的Web应用。
31 6
|
23天前
|
存储 移动开发 前端开发
高效的 HTML 与 CSS 编写技巧,涵盖语义化标签、文档结构优化、CSS 预处理、模块化设计、选择器优化、CSS 变量、媒体查询等内容
本文深入探讨了高效的 HTML 与 CSS 编写技巧,涵盖语义化标签、文档结构优化、CSS 预处理、模块化设计、选择器优化、CSS 变量、媒体查询等内容,旨在提升开发效率、网站性能和用户体验。
35 5