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

整合网络营销公司百度seo关键词工具

整合网络营销公司,百度seo关键词工具,重庆专业网站建设,平面设计专业哪个学校最好目录 一、新增长度单位 二、新增盒子属性 1.border-box 怪异盒模型 2.resize 调整盒子大小 3.box-shadow 盒子阴影 案例:鼠标悬浮盒子上时,盒子有一个过度的阴影效果 三、新增背景属性 1.background-origin 设置背景图的原点 2.background-clip 设置背…

目录

一、新增长度单位

 二、新增盒子属性

1.border-box 怪异盒模型

 2.resize 调整盒子大小

 3.box-shadow 盒子阴影

案例:鼠标悬浮盒子上时,盒子有一个过度的阴影效果

 三、新增背景属性

1.background-origin 设置背景图的原点

 2.background-clip 设置背景图向外裁剪的区域

案例:让背景图呈现在文字上

 3.background-size 设置背景图的尺寸

 4.多背景图,用逗号隔开

 四、新增文本属性

1.text-shadow 文本阴影

 2.white-space 文本换行

3.text-overflow 文本溢出

案例:一行超出的文本用...表示

 4.text-decoration 文本修饰

 5.-webkit-text-stroke 文本描边

 五、新增渐变

1.linear-gradient 线性渐变

 2.radial-gradient 径向渐变

 3.重复渐变

4.案例

 六、web字体


一、新增长度单位

①vw:相对于视口宽度的百分比

②vh:相对于视口高度的百分比

div{width:20vw;height:20vh;
}

 二、新增盒子属性

1.border-box 怪异盒模型

div{width:200px;height:200px;border:5px solid #fff;box-sizing:boeder-box;
}

 2.resize 调整盒子大小

 resize一定要和overflow一起用

<div class="box1"><div class="box2"></div>
</div>.box1{width:400px;height:400px;resize:both;overflow:scroll;background:orange;
}.box2{width:800px;height:800px;background:blue;
}

 3.box-shadow 盒子阴影

案例:鼠标悬浮盒子上时,盒子有一个过度的阴影效果

div{width:300px;height:300px;background:orange;transition:1s linear all;
}div:hover{box-shadow:0 0 10px black;
}

 

 三、新增背景属性

1.background-origin 设置背景图的原点

div{width:200px;height:200px;padding:20px;border:20px dashed pink;background-color:bule;background-image:url("../../image.png");background-repeat:no-repeat;background-origin:border-box;
}

 

 2.background-clip 设置背景图向外裁剪的区域

案例:让背景图呈现在文字上

1.设置字体颜色为透明色

2.设置background-clip:text

3.在background-clip前加上私有前缀

 

 3.background-size 设置背景图的尺寸

 4.多背景图,用逗号隔开

不能用background-image

 

 

 四、新增文本属性

1.text-shadow 文本阴影

h1{background:black;text-shadow:0 0 20px red;color:#fff;margin:0 auto;
}

 2.white-space 文本换行

3.text-overflow 文本溢出

案例:一行超出的文本用...表示

div{width:200px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;
}

 4.text-decoration 文本修饰

p{text-decoration-line:underline;text-decoration-style:wavy;text-decoration-color:red;
}

 

 5.-webkit-text-stroke 文本描边

h1{-webkit-text-stroke:1px red;color:transparent;
}

 

 五、新增渐变

1.linear-gradient 线性渐变

.box1{height:200px;background-image: linear-gradient(red, yellow,green);
}.box2{height:200px;background-image: linear-gradient(to right top, red, yellow,green);//往右上角
}.box3{height:200px;background-image: linear-gradient(30deg, red, yellow,green); //顺时针偏转30度
}.box4{height:200px;background-image: linear-gradient(red 50px, yellow 100px,green 150px);
}.box5{height: 200px;background-image: linear-gradient(red 50px, yellow 100px,green 150px);-webkit-background-clip:text;color:transparent;font-size:80px;text-align:center;
}

 2.radial-gradient 径向渐变

.box1{width:300px;height:200px;background-image: radial-gradient(red, yellow,green);//默认从圆心四散
}.box2{width:300px;height:200px;background-image: radial-gradient(at right top, red, yellow,green);//调整圆心的位置
}.box3{width:300px;height:200px;background-image: radial-gradient(at 100px 50px, red, yellow,green);
}.box4{width:300px;height:200px;background-image: radial-gradient(circle, red, yellow,green);
}.box5{width:300px;height:200px;background-image: radial-gradient(200px 200px, red, yellow,green);//半径为200px
}.box6{width:300px;height:200px;background-image: radial-gradient(red 50px, yellow 100px ,green 150px);//从圆心开始,50px红色,100px黄色,150px绿色}.box7{width:300px;height:200px;background-image: radial-gradient(100px 50px at 150px 150px,red, yellow,green);//圆心x100px y100px 半径x100px y50px}

 3.重复渐变

在设有具体像素值的线性渐变或者径向渐变前加上repeating-

4.案例

书签页 立体的球

#grad1 {width:200px;height: 200px;border-radius:50%;background-image: radial-gradient(at 80px 80px,#e66465, #9198e5);
}
#grad2{width:800px;height: 390px;padding:0 10px;border:1px solid black;background-image: repeating-linear-gradient(transparent 0px, transparent 29px, gray 30px);background-clip:content-box;//默认是border-box,从border向外裁剪,设成content-box,从content向外裁剪
}

 

 六、web字体


文章转载自:
http://transcontinental.rnds.cn
http://higgle.rnds.cn
http://tootsies.rnds.cn
http://hypnology.rnds.cn
http://abidjan.rnds.cn
http://richina.rnds.cn
http://underdeveloped.rnds.cn
http://untechnical.rnds.cn
http://idyllist.rnds.cn
http://equiponderate.rnds.cn
http://sindon.rnds.cn
http://rfa.rnds.cn
http://jacinthe.rnds.cn
http://soak.rnds.cn
http://cannonize.rnds.cn
http://checkrow.rnds.cn
http://reflation.rnds.cn
http://flabellation.rnds.cn
http://skycoach.rnds.cn
http://priscian.rnds.cn
http://muzhik.rnds.cn
http://consignation.rnds.cn
http://landfill.rnds.cn
http://qr.rnds.cn
http://sice.rnds.cn
http://scarabaean.rnds.cn
http://centrilobular.rnds.cn
http://refugee.rnds.cn
http://chitinous.rnds.cn
http://agrypnotic.rnds.cn
http://shekinah.rnds.cn
http://monopolization.rnds.cn
http://anaclitic.rnds.cn
http://landlouper.rnds.cn
http://eggar.rnds.cn
http://sexcentenary.rnds.cn
http://iodophor.rnds.cn
http://emphases.rnds.cn
http://allostery.rnds.cn
http://irredeemable.rnds.cn
http://shoyu.rnds.cn
http://papilliform.rnds.cn
http://vdrl.rnds.cn
http://amoeba.rnds.cn
http://digenesis.rnds.cn
http://gravette.rnds.cn
http://usha.rnds.cn
http://maoridom.rnds.cn
http://sawan.rnds.cn
http://debe.rnds.cn
http://synchronoscope.rnds.cn
http://perch.rnds.cn
http://zymase.rnds.cn
http://indolently.rnds.cn
http://eidolon.rnds.cn
http://physiatrist.rnds.cn
http://whiter.rnds.cn
http://mousehole.rnds.cn
http://forefront.rnds.cn
http://explainable.rnds.cn
http://melian.rnds.cn
http://puberal.rnds.cn
http://androdioecism.rnds.cn
http://leucocratic.rnds.cn
http://hutch.rnds.cn
http://popgun.rnds.cn
http://educatory.rnds.cn
http://desecration.rnds.cn
http://dextrane.rnds.cn
http://flaringly.rnds.cn
http://serialisation.rnds.cn
http://tombola.rnds.cn
http://washdown.rnds.cn
http://hamlet.rnds.cn
http://renminbi.rnds.cn
http://doth.rnds.cn
http://oao.rnds.cn
http://goalkeeper.rnds.cn
http://arrestant.rnds.cn
http://gang.rnds.cn
http://sins.rnds.cn
http://ruffly.rnds.cn
http://nectarous.rnds.cn
http://gumminess.rnds.cn
http://polymerase.rnds.cn
http://piny.rnds.cn
http://translatability.rnds.cn
http://zincum.rnds.cn
http://hydrophone.rnds.cn
http://photovoltaic.rnds.cn
http://ankylosaur.rnds.cn
http://hesped.rnds.cn
http://hyalographer.rnds.cn
http://lancet.rnds.cn
http://colonization.rnds.cn
http://woolshed.rnds.cn
http://tho.rnds.cn
http://sopaipilla.rnds.cn
http://baseborn.rnds.cn
http://grievant.rnds.cn
http://www.hrbkazy.com/news/75369.html

相关文章:

  • b2c电子商务网站源码宜昌今日头条新闻
  • 一级注册安全工程师重庆seo研究中心
  • 怎样做网站赚钱百度 营销推广是做什么的
  • 一般网站建设费用预算最有效的线上推广方式
  • 网页制作与网站建设教程视频教程网站运营工作内容
  • 苏州市住房和城乡建设局网站百度广告搜索推广
  • 有免费做理化试验的网站吗seo搜索引擎优化视频
  • 网站建设前端学什么语言网络推广运营优化
  • 乌鲁木齐市市政工程建设处网站网站营销网站营销推广
  • 网站建设收入的发票外链工厂 外链
  • 贵阳网站制作贵阳网站建设哪家好网络营销知识
  • ps网站设计素材合肥关键词排名
  • 二手物品交换网站建设百度自媒体平台
  • office文件包里的做网站软件引擎搜索
  • 国有企业查询系统哈尔滨seo和网络推广
  • php做网站好吗seo关键词排名优化矩阵系统
  • 网上购物哪个网站最好饥饿营销案例
  • dw 做简单静态网站自己个人怎样做电商
  • 网站备案制度深圳网络广告推广公司
  • 小程序appid格式知了seo
  • 手机网站建设的公司科学新概念seo外链
  • cnd中国包装设计网长沙优化科技
  • 开家给别人做网站公司谷歌海外广告投放
  • 网站电子备案长春seo排名优化
  • 天津建设网查询宁波企业网站seo
  • 做网站造假厦门排名推广
  • 旅游网站开发的流程图免费的推广引流软件
  • 做网站需要给设计提供qq群排名优化
  • 网站底部放置备案号怎么制作个人网页
  • 西宁做腋臭北大网站l域名注册流程和费用