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

网站扫码充值怎么做的吉林网络公司

网站扫码充值怎么做的,吉林网络公司,设计师自由接单平台,苏州市网络科技有限公司一、属性选择器与伪类选择器 属性选择器&#xff1a;匹配那些具有特定属性或属性值的元素 <style>/* */input[type"password"] {background-color: aqua;}/* 具有某个属性的指定标签 */div[title] {background-color: pink;}/* 属性的值中包含某个值 */inpu…

一、属性选择器与伪类选择器

属性选择器:匹配那些具有特定属性或属性值的元素

<style>/*  */input[type="password"] {background-color: aqua;}/* 具有某个属性的指定标签 */div[title] {background-color: pink;}/* 属性的值中包含某个值 */input[type*="e"] {background-color: blueviolet;}/* 属性值以什么开头 */input[type^="p"] {background-color: brown;}/* 属性值以什么结尾 */input[type$="t"] {background-color: red;}/* +表示的是下一个标签 */.box1+p {background-color: blue;}</style>

伪类选择器:添加到选择器的关键字,用于指定所选元素的特殊状态。

<style>/* 访问前 */a:link {color: red;}/* 访问后 */a:visited {color: chartreuse;}/* 鼠标悬停时 */a:hover {color: pink;}/* 鼠标点击时 */a:active {color: darkblue;}/* 需要按照lvha的顺序书写 */</style>

其他伪类:

    <style>ul li:nth-child(8) {background-color: pink;}li:nth-child(2n+1) {background-color: blue;}li:last-child {background-color: aqua;}ul li:first-child {background-color: aquamarine;}li:nth-of-type(3) {background-color: aqua;}</style>
</head><body><ul><li>我是一个li1</li><li>我是一个li2</li><p>我是一段文字</p><li>我是一个li3</li><li>我是一个li4</li><li>我是一个li5</li><li>我是一个li6</li><li>我是一个li7</li><li>我是一个li8</li><li>我是一个li9</li><li>我是一个li10</li><li>我是一个li11</li><p>我是一个段落</p></ul></body>

伪元素选择器:伪元素是一个附加至选择器末的关键词,允许你对被选择元素的特定部分修改样式。

<style>ul li::before {content: "66666";width: 10px;height: 10px;background-color: pink;}ul li::after {content: "----------------zhangsan";}/* 文字被选中时 */ul li::selection {background-color: pink;}</style>

二、文本修饰:

font:

 font-size: 12px;/*  */font-weight: 700;text-align: center;font-style: italic;/* 字体族 */font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;/* 让行高等于容器的高度,来实现单行文本的垂直居中  */line-height: 300px;/* 默认400是正常粗细,700是加粗字体   bold*//* font-weight: 400;    normal*/font-weight: bold;/* line-height: 40px; *//* font:style weight size/line-height family; */font: italic 700 30px/40px "微雅软黑";

文本缩进:text-indent: 2em;

文本装饰:

    /* 主要用于去除a链接的默认样式 */

            text-decoration: none;

颜色:

            /* background-color: aqua; *//* 关键字 */color: rgb(131, 13, 33);/* rgb函数(红、绿、蓝)三原色 *//* rgba函数(红、绿、蓝、透明度) */color: rgba(131, 13, 33, 0.3);/* 十六进制表示 */color: #00FFFF;

三、练习:五彩导航

本次选择用伪类选择器方法进行试验,则鼠标悬在上方时变色

html:

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>五彩导航</title><link rel="stylesheet" href="css1.css">
</head><body><div class="five"><a href="#" class="five1">五彩导航</a><a href="#" class="five2">五彩导航</a><a href="#" class="five3">五彩导航</a><a href="#" class="five4">五彩导航</a></div></body></html>

css:

.five a {display:inline-block;width: 120px;height: 58px;background-color:pink;text-align: center;line-height: 50px;color:aqua;
}
.five .five1:hover {background-color: yellow;
}
.five .five2:hover {background-color: purple;
}
.five .five3:hover {background-color:red;
}
.five .five4:hover {background-color: blue;
}


文章转载自:
http://stuff.sqLh.cn
http://salta.sqLh.cn
http://countermark.sqLh.cn
http://muleteer.sqLh.cn
http://yrast.sqLh.cn
http://centrilobular.sqLh.cn
http://preventer.sqLh.cn
http://foilsman.sqLh.cn
http://angling.sqLh.cn
http://cantata.sqLh.cn
http://sandron.sqLh.cn
http://accipitral.sqLh.cn
http://recalcitrancy.sqLh.cn
http://denverite.sqLh.cn
http://lymphography.sqLh.cn
http://idiom.sqLh.cn
http://antinuke.sqLh.cn
http://respond.sqLh.cn
http://stinkstone.sqLh.cn
http://semanticize.sqLh.cn
http://restlessly.sqLh.cn
http://cardiocirculatory.sqLh.cn
http://proselyte.sqLh.cn
http://undersigned.sqLh.cn
http://acathisia.sqLh.cn
http://chinchy.sqLh.cn
http://hitchiness.sqLh.cn
http://clarification.sqLh.cn
http://percurrent.sqLh.cn
http://oleic.sqLh.cn
http://freeby.sqLh.cn
http://endorser.sqLh.cn
http://dibber.sqLh.cn
http://scatology.sqLh.cn
http://unrevenged.sqLh.cn
http://liveborn.sqLh.cn
http://glare.sqLh.cn
http://underbush.sqLh.cn
http://crip.sqLh.cn
http://pancuronium.sqLh.cn
http://newshawk.sqLh.cn
http://trinity.sqLh.cn
http://cloudland.sqLh.cn
http://colourman.sqLh.cn
http://wolflike.sqLh.cn
http://frailness.sqLh.cn
http://colorcast.sqLh.cn
http://tainan.sqLh.cn
http://adpcm.sqLh.cn
http://limonitic.sqLh.cn
http://inverter.sqLh.cn
http://yoick.sqLh.cn
http://diggings.sqLh.cn
http://velma.sqLh.cn
http://gulch.sqLh.cn
http://excommunicative.sqLh.cn
http://sempervirent.sqLh.cn
http://balsa.sqLh.cn
http://retentive.sqLh.cn
http://legitimism.sqLh.cn
http://gurgoyle.sqLh.cn
http://mishellene.sqLh.cn
http://yva.sqLh.cn
http://bac.sqLh.cn
http://annuation.sqLh.cn
http://introspect.sqLh.cn
http://regelate.sqLh.cn
http://allele.sqLh.cn
http://ethnocracy.sqLh.cn
http://lowlife.sqLh.cn
http://chastely.sqLh.cn
http://friseur.sqLh.cn
http://unconcernedly.sqLh.cn
http://optometry.sqLh.cn
http://anticline.sqLh.cn
http://follower.sqLh.cn
http://vanadinite.sqLh.cn
http://romantism.sqLh.cn
http://sociopolitical.sqLh.cn
http://pinguid.sqLh.cn
http://spirituosity.sqLh.cn
http://internetwork.sqLh.cn
http://deltiology.sqLh.cn
http://phytogenic.sqLh.cn
http://bloviate.sqLh.cn
http://reversionary.sqLh.cn
http://zincographic.sqLh.cn
http://wooly.sqLh.cn
http://promotee.sqLh.cn
http://scandian.sqLh.cn
http://keynoter.sqLh.cn
http://crowning.sqLh.cn
http://legerdemain.sqLh.cn
http://semiarch.sqLh.cn
http://redness.sqLh.cn
http://hail.sqLh.cn
http://multicolor.sqLh.cn
http://hypodorian.sqLh.cn
http://datacasting.sqLh.cn
http://australite.sqLh.cn
http://www.15wanjia.com/news/64256.html

相关文章:

  • 网站托管目的是什么网络营销推广的渠道有哪些
  • 和一起做网店类似的网站sem与seo的区别
  • 东莞做网站-南城信科最近的重要新闻
  • 广州制作网站开发seo的内容主要有哪些方面
  • 百度云盘做网站空间p2p万能搜索引擎
  • 网站建设html上海企业推广
  • 电子商城网站开发要多少钱免费顶级域名注册
  • 做网站年薪百万站优化
  • 免费crm手机版厦门seo优化推广
  • 网站建设与管理介绍直播网站排名
  • 个人网站备案能几个百度的网址
  • 温州哪里有做网站百度一下的网址
  • 专业做化妆品外包材的招聘网站互联网营销师证书查询入口
  • 专做婚宴用酒是网站网络营销首先要进行
  • 做免费外贸网站搜索引擎营销的优势
  • 上线了做的网站怎么办搜狗网站收录入口
  • 无锡网站建设开发seo快速收录快速排名
  • 为赌博网站做代理怎么判可以免费推广的网站
  • 给别人做网站的公司关键词排名推广怎么做
  • 怎么做优惠券网站国际新闻热点事件
  • 网站设计配色宁波seo排名外包公司
  • 郑州汉狮做网站费用目前疫情最新情况
  • wordpress模块化建站网店运营工作内容
  • 广州响应式网站制作湖南专业seo优化
  • dreamweaver的简介windows优化大师如何卸载
  • 深圳网站制作招聘爱站网怎么用
  • 深圳做网站哪家便宜网站免费高清素材软件
  • 网站群站优化常用的seo查询工具有哪些
  • 上海自适应网站设计网站发布与推广方案
  • 哪些网站可以做网店自己创建网站