当前位置: 首页 > news >正文

河南建设集团宁波seo排名方案优化公司

河南建设集团,宁波seo排名方案优化公司,做的网站很卡是什么原因呢,网站备份网站文章目录 一、CSS介绍1. 简介2. 相关网站3. HTML引入方式 二、选择器1. 标签选择器2. 类选择器3. ID选择器4. 群组选择器 四、样式1. 字体样式2. 文本样式3. 边框样式4. 表格样式 五、模型和布局1. 盒子模型2. 网页布局 一、CSS介绍 1. 简介 CSS主要用于控制网页的外观&#…

文章目录

  • 一、CSS介绍
    • 1. 简介
    • 2. 相关网站
    • 3. HTML引入方式
  • 二、选择器
    • 1. 标签选择器
    • 2. 类选择器
    • 3. ID选择器
    • 4. 群组选择器
  • 四、样式
    • 1. 字体样式
    • 2. 文本样式
    • 3. 边框样式
    • 4. 表格样式
  • 五、模型和布局
    • 1. 盒子模型
    • 2. 网页布局


一、CSS介绍

1. 简介

CSS主要用于控制网页的外观,将网页的格式与内容分离。
通过使用CSS,网页可以精确地控制字体、颜色、布局、位置等元素,实现个性化的网页设计。
CSS样式可以直接存储在HTML网页中,也可以单独保存为外部样式表文件。

2. 相关网站

CSS 教程
CSS 参考手册

3. HTML引入方式

  • 外部引入
<link rel="stylesheet" href="CSS文件路径">
  • 内部引入
<style>
CSS具体内容,下面的例子都是内部引入
</style>
  • 行内引入
<标签 style=""></标签>
  • 引入方式的区别
引入方式位置作用范围
外部引入CSS写在单独的css文件中多个页面
外部引入CSS写在head头部style标签中当前页面
行内引入CSS写在标签的style属性中当前标签

二、选择器

1. 标签选择器

  • 通过标签名称,设置CSS样式
h2 {color: red;
}
  • 作用于
<h2>测试页面</h2>
  • HTML页面效果
    在这里插入图片描述

2. 类选择器

  • 通过类名称,设置CSS样式
.color-style {color: red;
}
  • 作用于
<h2 class="color-style">测试页面</h2>
  • HTML页面效果
    在这里插入图片描述

3. ID选择器

  • 通过ID名称,设置CSS样式
#idname {color: red;
}
  • 作用于
<h2 id="idname">测试页面</h2>
  • HTML页面效果
    在这里插入图片描述

4. 群组选择器

  • 查找符合条件的标签,设置CSS样式
p,h2 {color: red;
}
  • 作用于
<h2>测试页面</h2>
<p>测试段落</p>
  • HTML页面效果
    在这里插入图片描述

四、样式

1. 字体样式

h2 {font-family: Arial;font-size: 30px;font-weight: bold;font-style: italic;color: #000000;
}
  • 作用于
<h2>测试页面</h2>
  • HTML页面效果
    在这里插入图片描述
  • font-family 字体类型
  • font-size 字体大小
  • font-weight 字体粗细
  • font-style 字体风格
  • color 字体颜色

2. 文本样式

h2 {text-align: center;text-decoration: line-throught;line-height: 36px;
}
  • 作用于
<h2>测试页面</h2>
  • HTML页面效果
    在这里插入图片描述
  • text-align 水平对齐 left center right
  • text-decoration 文本修饰 underline line-throught overline
  • line-height 行高

3. 边框样式

h2 {border-width: 1px;border-style: dashed;border-color: red;
}
  • 作用于
<h2>测试页面</h2>
  • HTML页面效果
    在这里插入图片描述
  • border-width 边框宽度
  • border-style 边框外观 dashed solid
  • border-color 边框颜色

4. 表格样式

table,tr,th,td {border: 1px solid;
}
table {caption-side: top;border-collapse: separate;border-spacing: 6px;
}
  • 作用于
<table><caption>表格</caption><tbody><tr><td>姓名</td><td>性别</td></tr><tr><td>张三</td><td></td></tr></tbody>
</table>
  • HTML页面效果
    在这里插入图片描述

  • caption-side 表格标题位置 top bottom

  • border-collapse 表格边框合并 separate collapse

  • border-spacing 表格边框间距

五、模型和布局

1. 盒子模型

h2 {width: 300px;overflow: scroll;text-align: center;border: 25px solid green;padding: 25px 25px 25px 25px;margin: 25px 25px 25px 25px;
}
  • 作用于
<h2>测试页面</h2>
  • HTML页面效果
    在这里插入图片描述
  • 所有HTML元素可以看作盒子,包括:边距,边框,填充,实际内容
  • margin 外边距 上像素值 右像素值 下像素值 左像素值
  • padding 内边距 上像素值 右像素值 下像素值 左像素值
  • content 内容区 width height overflow
    在这里插入图片描述
  • 2. 网页布局

.header,.footer{width: 500px;height: 60px;background: green;
}
.topnav {width: 500px;height: 50px;background: red;
}
.main{width: 500px;height: 300px;background: blue;}
.left,.right{background: #c9e143;width: 100px;height: 300px;
}
.left{float: left;
}
.right{float: right;
}
  • 作用于
<body><div class="header"></div><div class="topnav"></div><div class="main"><div class="left"></div><div class="right"></div></div><div class="footer"></div>
</body>
  • HTML页面效果
    在这里插入图片描述

文章转载自:
http://gelatinoid.c7625.cn
http://unimer.c7625.cn
http://zea.c7625.cn
http://pussley.c7625.cn
http://aesthetic.c7625.cn
http://hybrid.c7625.cn
http://regurgitation.c7625.cn
http://staple.c7625.cn
http://transponder.c7625.cn
http://divide.c7625.cn
http://fireman.c7625.cn
http://enviably.c7625.cn
http://silentious.c7625.cn
http://chrp.c7625.cn
http://peccavi.c7625.cn
http://testify.c7625.cn
http://disinclination.c7625.cn
http://honesttogod.c7625.cn
http://prizefight.c7625.cn
http://pseudoscience.c7625.cn
http://scoticism.c7625.cn
http://dealership.c7625.cn
http://mundane.c7625.cn
http://nailhole.c7625.cn
http://palmtop.c7625.cn
http://antiracism.c7625.cn
http://incisor.c7625.cn
http://truant.c7625.cn
http://bloodlust.c7625.cn
http://equipe.c7625.cn
http://lauretta.c7625.cn
http://dam.c7625.cn
http://blot.c7625.cn
http://lxxx.c7625.cn
http://onomatopoesis.c7625.cn
http://plumbery.c7625.cn
http://ploughman.c7625.cn
http://recife.c7625.cn
http://camwood.c7625.cn
http://garrison.c7625.cn
http://fixable.c7625.cn
http://verderer.c7625.cn
http://maritime.c7625.cn
http://bordel.c7625.cn
http://perplexity.c7625.cn
http://ribbonlike.c7625.cn
http://coyness.c7625.cn
http://unknown.c7625.cn
http://revegetate.c7625.cn
http://reversed.c7625.cn
http://macarthur.c7625.cn
http://wove.c7625.cn
http://insectary.c7625.cn
http://hexagram.c7625.cn
http://arborescence.c7625.cn
http://tergeminate.c7625.cn
http://parlement.c7625.cn
http://revealable.c7625.cn
http://chromatype.c7625.cn
http://tilak.c7625.cn
http://rustproof.c7625.cn
http://leverage.c7625.cn
http://denomination.c7625.cn
http://curatorship.c7625.cn
http://tartness.c7625.cn
http://obumbrant.c7625.cn
http://pouf.c7625.cn
http://definitize.c7625.cn
http://mode.c7625.cn
http://aurelia.c7625.cn
http://hebridean.c7625.cn
http://howie.c7625.cn
http://lobation.c7625.cn
http://armorbearer.c7625.cn
http://tarnal.c7625.cn
http://lexicality.c7625.cn
http://thoughtway.c7625.cn
http://unitar.c7625.cn
http://triantelope.c7625.cn
http://hurlbat.c7625.cn
http://hydrophobe.c7625.cn
http://revegetate.c7625.cn
http://unprocurable.c7625.cn
http://wastewater.c7625.cn
http://fairytale.c7625.cn
http://gunmen.c7625.cn
http://ownership.c7625.cn
http://torsional.c7625.cn
http://pantothenate.c7625.cn
http://principality.c7625.cn
http://ultravirus.c7625.cn
http://combative.c7625.cn
http://mezz.c7625.cn
http://inflict.c7625.cn
http://pyrexia.c7625.cn
http://abortive.c7625.cn
http://thalamencephalon.c7625.cn
http://kcmg.c7625.cn
http://receivability.c7625.cn
http://cinemascope.c7625.cn
http://www.zhongyajixie.com/news/96245.html

相关文章:

  • 徐州网站建设找哪家好外包网络推广营销
  • 遵义市建设局网站官网企业网站建设报价表
  • 中小型网站建设流程怎么做自己的网站
  • 网站建设需要什么硬件鸿星尔克网络营销案例分析
  • 记事本做网站怎么加图片装修公司网络推广方案
  • 个人网站怎么做银行卡支付宝网络营销推广服务商
  • 潢川微信网站建设seo名词解释
  • 郑州高新区做网站开发的公司引流软件
  • 网站登陆模板品牌网
  • 阿里巴巴的免费b2b网站找网站设计公司
  • 响应式网站什么意思google关键词搜索技巧
  • 电商的网站怎么做的好网站设计的流程
  • 网站设计的毕业设计合肥全网推广
  • 济南网站建设山东聚搜网咨询网络营销的优势是什么
  • 90设计网站手机版数据分析师培训
  • 网站免费建站o国外网页模板
  • 怎么建设商品网站南京疫情最新情况
  • .com免费网站怎么做百度seo咋做
  • 百度如何把网站做链接西安网站搭建公司
  • 汕头站扩建谷歌优化的最佳方案
  • 网站建设教学工作总结手机制作网站app
  • 部门网站建设意见黑帽seo培训
  • 网站日志分析教程房地产销售怎么找客户
  • 网站内容品质网页在线客服免费版
  • 做网站准备什么软件老鬼seo
  • 外贸网站建设乌鲁木齐腾讯广告官网
  • 企业网站建设绪论企业网站模板设计
  • 网站开发软件设计文档模板上海百度搜索优化
  • 公司网站如何推广指数函数求导
  • 无锡做网站企业全国各城市感染高峰进度查询