HTML和CSS实现京东首页(html和css详解)(二)

简介: HTML和CSS实现京东首页(html和css详解)

HTML和CSS实现京东首页(html和css详解)(一)https://developer.aliyun.com/article/1382397


CSS代码如下:

(1)base部分代码如下:

/*
* @Author: apple
* @Date:   2017-07-25 11:10:42
* @Last Modified by:   apple
* @Last Modified time: 2017-07-27 00:20:43
*/
img {
  /* display: block; */
  vertical-align: top; /* 解决图片底测有空白缝隙的问题 */
}
.w {  /* 版心的公共类 */
  width: 1190px;  /* 京东的版心是 1190 */  
  margin: 0 auto;  
}
.fl { /*  浮动的公共类 */
  float: left;
}
.fr {
  float: right;
}
 a {
  text-decoration: none;  /* 取消下划线 */
  font-size: 12px;
  color: #999;
}
a:hover {
  color: #c81623;
}
blockquote,body,button,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,hr,input,legend,li,ol,p,pre,td,textarea,th,ul{
  margin: 0;
  padding: 0;
}
input,button {
  border: 0;
  outline: none;  /* 取消轮廓边框 */
}
ul {
  list-style: none;
}
body {
  background-color: #f6f6f6;
}
.f10{
  color: #f10215!important;
}
@font-face {  /* 声明字体 */
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?8qhwk5');
  src:  url('../fonts/icomoon.eot?8qhwk5#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?8qhwk5') format('truetype'),
    url('../fonts/icomoon.woff?8qhwk5') format('woff'),
    url('../fonts/icomoon.svg?8qhwk5#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* header部分 */
header {
  height: 80px;
  background-color: #020000;
}
/* 快速导航栏begin */
.shortcut {
  height: 30px;
  line-height: 30px;
  background-color: #e3e4e5;
  border-bottom: 1px solid #ddd;
}
.city {
  margin-left: 200px;
}
.shortcut li {
  float: left;
}
.shortcut i {
  font-family: "icomoon";
  font-style: normal;  /* 让倾斜的不倾斜 */
  color: #ccc;
}
.space {  /* 小竖线 */
  width: 1px;
  height: 10px;
  background-color: #ccc;
  margin: 10px  12px 0;  /* 上 10  左右是 12  下是 0 */
}
.mobile {
  position: relative;
}
.mobile img {
  position: absolute;
  left: -3px;
  top: 24px;
  border: 1px solid #ccc;
  padding: 3px;
}
/* 快速导航栏over */
/* 中间大部分 */
.middle {
  height: 140px;
  position: relative;
}
.logo {
  position: absolute;
  top: -30px;
  left: 0;
  box-shadow: 0px -10px 10px rgba(0,0,0,.3);
}
.logo a {
  display: block;
  width: 190px;
  height: 170px;
  background: #fff url(../images/logo.png) no-repeat;
}
/* 搜索框 */
.form {
  width: 550px;
  height: 35px;
  position: absolute;
  top: 25px;
  left: 320px;
}
.form input {
  width: 495px;
  height: 33px;
  border: 1px solid #f10215;
  float: left;
  font-size: 14px;
  padding-left:3px;
}
.form button {
  width: 50px;
  height: 35px;
  background-color: #f10215;
  float: left;
}
.form button i {
  font-family: 'icomoon';
  font-style: normal;
  color: #fff;
}
/* 购物车 */
.shopCar {
  width: 188px;
  height: 33px;
  line-height: 33px;
  border: 1px solid #ccc;
  position: absolute;
  top: 25px;
  right: 95px;
  background-color: #fff;
  text-align: center;
  color: #f10215;
}
.shopCar i {
  font-family: 'icomoon';
  margin-right: 5px;
  font-style: normal;
}
.shopCar span {
  width: 15px;
  height: 15px;
  background-color: #f10215;
  border-radius: 50%;
  position: absolute;  /* 加了绝对定位 固定定位 浮动的行内元素, 可以不用转换,直接给宽度和高度 */
  top: 5px;
  right: 30px;
  font-size: 12px;
  color: #fff;
  line-height: 15px;
}
/* 关键词模块 */
.hotwords {
  position: absolute;
  top: 68px;
  left: 320px;
}
/* 小导航模块 */
.navitems {
  width: 770px;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 200px;
  line-height: 40px;
}
.navitems li {
  float: left;
  margin-left: 30px;
}
.navitems li a {
  font-size: 16px;
  font-weight: 700; 
  color: #555;
}
.navitems li a:hover {
  color: #f10215;
  }
.navitems .space {
  /* margin-top: 15px;
  margin-left:15px;
  margin-right: -15px; */
  margin:15px -15px 0 15px;
}
/* 超级日 */
.super {
  position: absolute;
  bottom: 10px;
  right: 0;
}
/* 页面底部 */
footer {
  margin-top: 35px;
  height: 500px;
  background-color: #EAEAEA;
}
footer a {
  color: #666;
}
.service {
  padding: 30px 0; 
  border-bottom: 1px solid #DEDEDE;
  overflow: hidden;
}
.service ul li {
  width: 297px;
  height: 43px;
  position: relative;
  line-height: 43px;
  float: left;
}
.service  li h5 {
  position: absolute;
  top: 0;
  left: 38px;
  width: 36px;
  height: 43px;
  background: url(../images/ico.png) no-repeat;
  text-indent: -999em;
}
.service  li:nth-child(2) h5 {
  background-position: 0 -43px;
}
.service  li:nth-child(3) h5 {
  background-position: 0 -86px;
}
.service  li:nth-child(4) h5 {
  background-position: bottom;
}
.service  li p {
  font-weight: 700;
  margin-left: 82px;
}
/* 帮助模块 */
.help {
  height: 200px;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 25px;
  box-sizing: border-box;
}
.help dl {
  width: 192px;
  float: left;
}
.help dt,
.coverage h5 {
  height: 30px;
  font-size: 14px;
  color: #666;
}
.help dd {
  height: 22px;
}
/* 范围 */
.coverage {
  width: 200px;
  height: 150px;
  background: url(../images/ico_footer.png) no-repeat;
}
.coverage h5 {
  padding-left: 35px;
}
.coverage p {
  font-size: 12px;
  color: #666;
  line-height: 18px;
  width: 180px;
}
.coverage a {
  display: block;
  margin-top: 5px;
  width: 180px;
  text-align: right;
}
/* 底部版权 */
.copyright {
  padding-top: 20px;
  text-align: center;
  color: #666;
  font-size: 12px;
}
.copyright span {
  margin: 0 10px;
}
.copyright div {
  margin-top:20px;
}
.copyright div p {
  line-height: 22px;
}
.foot-icon a {
  display: inline-block;
  width: 103px;
  height: 33px;
  background: url(../images/ico_footer.png) no-repeat 0 -150px;
  margin: 20px 4px 0;
  /* 行内块可以用 text-align: center 来实现居中 */
}
.foot-icon a:nth-child(2) {
  background-position: -103px  -150px;
}
.foot-icon a:nth-child(3) {
  background-position: 0  -183px;
}.foot-icon a:nth-child(4) {
  background-position: -103px  -183px;
}.foot-icon a:nth-child(5) {
  background-position: 0  -216px;
}.foot-icon a:nth-child(6) {
  background-position: -103px  -216px;
}


HTML和CSS实现京东首页(html和css详解)(三)https://developer.aliyun.com/article/1382399

相关文章
|
9天前
|
移动开发 前端开发 JavaScript
[HTML、CSS]细节与使用经验
本文总结了前端开发中的一些重要细节和技巧,包括CSS选择器、定位、层级、全局属性、滚轮控制、轮播等。作者以纯文字形式记录,便于读者使用<kbd>Ctrl + F</kbd>快速查找相关内容。文章还提供了示例代码,帮助读者更好地理解和应用这些知识点。
31 1
[HTML、CSS]细节与使用经验
|
10天前
|
移动开发 前端开发 JavaScript
[HTML、CSS]知识点
本文涵盖前端知识点扩展、HTML标签(如video、input、canvas)、datalist和details标签的使用方法,以及CSS布局技巧(如margin、overflow: hidden和动态height)。文章旨在分享作者的学习经验和实用技巧。
23 1
[HTML、CSS]知识点
|
5天前
|
移动开发 JavaScript 前端开发
html table+css实现可编辑表格的示例代码
html table+css实现可编辑表格的示例代码
|
1天前
|
前端开发 JavaScript
用HTML CSS JS打造企业级官网 —— 源码直接可用
必看!用HTML+CSS+JS打造企业级官网-源码直接可用,文章代码仅用于学习,禁止用于商业
19 1
|
6天前
|
前端开发 JavaScript 安全
HTML+CSS+JS密码灯登录表单
通过结合使用HTML、CSS和JavaScript,我们创建了一个带有密码强度指示器的登录表单。这不仅提高了用户体验,还帮助用户创建更安全的密码。希望本文的详细介绍和代码示例能帮助您在实际项目中实现类似功能,提升网站的安全性和用户友好性。
15 3
|
16天前
|
前端开发
HTML 样式- CSS3
内部样式表适用于单个文件的特别样式,通过&lt;head&gt;部分的&lt;style&gt;标签定义;外部样式表适用于多个页面,通过&lt;link&gt;标签引用外部CSS文件;&lt;style&gt;定义样式,&lt;link&gt;引用资源;已弃用的标签有&lt;font&gt;、&lt;center&gt;、&lt;strike&gt;,属性有color和bgcolor。
|
16天前
HTML 样式- CSS2
HTML样式实例展示了如何使用`font-family`、`color`和`font-size`属性来定义字体样式,以及使用`text-align`属性来设置文本的对齐方式。示例包括标题和段落的样式设置。
|
16天前
|
前端开发
HTML 样式- CSS1
CSS (层叠样式表) 用于为 HTML 元素添加样式,包括颜色、文本、盒子模型等。CSS 可以通过内联样式、内部样式表或外部引用的方式添加到 HTML 中。推荐使用外部引用方式。本教程将介绍如何使用 CSS 为 HTML 添加样式,并提供实例演示。
|
1月前
|
前端开发 JavaScript 搜索推荐
打造个人博客网站:从零开始的HTML和CSS之旅
【9月更文挑战第32天】在这个数字化的时代,拥有一个个人博客不仅是展示自我的平台,也是技术交流的桥梁。本文将引导初学者理解并实现一个简单的个人博客网站的搭建,涵盖HTML的基础结构、CSS样式的美化技巧以及如何将两者结合来制作一个完整的网页。通过这篇文章,你将学会如何从零开始构建自己的网络空间,并在互联网世界留下你的足迹。

热门文章

最新文章