码迷,mamicode.com
首页 >  
搜索关键字:background    ( 6339个结果
swiper修改分页器样式
css中,在.swiper-pagination-bullet-active{}中修改就ok。 默认样式为: .swiper-pagination-bullet-active { background-color: #e8561a; width: 20px; border-radius: 20px; ...
分类:其他好文   时间:2020-11-27 11:33:41    阅读次数:7
小相册
代码如下: <style> *{ margin: 0; padding: 0; } html,body{ width: 100%; height: 100%; } body{ background:#1e1e1f; overflow:hidden; } .box{ width: 100%; heig ...
分类:其他好文   时间:2020-11-27 10:58:16    阅读次数:6
盒模型
盒子的六个属性:1·width属性 2.height属性 3.内边距(padding)4.边距(border)5.外边距(margin)6.背景属性(background) 垂直居中的条件:单行文字垂直居中,行高等于高度值 当行高小于高度,文字偏上;当行高大于高度,文字偏下。 盒模型的宽度=左外边距 ...
分类:其他好文   时间:2020-11-26 14:08:53    阅读次数:5
CSS 动态渐变色字体
.ys{ font-weight: 600; font-size: 16px; font-family: "黑体"; color: #8c888b; background: -webkit-linear-gradient(45deg, #70f7fe, #fbd7c6, #fdefac, #bfb5 ...
分类:Web程序   时间:2020-11-24 12:44:17    阅读次数:12
VUE:如何设置当前页面的背景色
给当前页面的最外层div class 加样式 /deep/ html, .home { position: fixed; height: 100%; width: 100%; background-color: #658ea9 !important; } 这是效果 ...
分类:其他好文   时间:2020-11-20 11:36:45    阅读次数:25
xss总结
与xss相关的HTML标签和属性 <script>定义客户端脚本 <img src=>规定显示图像的URL <body background=> 规定文档背景图像URL <body onload=> body标签的事件属性 <input onfocus= autofocus> form表单的事件属性 ...
分类:其他好文   时间:2020-11-19 12:36:19    阅读次数:6
java图片合成
privateStringshareQrCode(Stringcontent){//获取底图Stringpath="/template/background.png";InputStreaminputStream=this.getClass().getResourceAsStream(path);QrConfigconfig=newQrConfig(118,118);//设置边
分类:编程语言   时间:2020-11-18 13:13:19    阅读次数:13
如何设置文字为背景图片的颜色
如果想将文字设置为背景图片的颜色,需要如下步骤: 第一步:设置背景图片 background-image: url("3.jpg"); 第二步:设置属性 background-clip: text; 第三步:将文字颜色改为透明 color: transparent; <!DOCTYPE html> ...
分类:其他好文   时间:2020-11-11 15:52:25    阅读次数:5
前端:如何让background背景图片进行CSS自适应
在设置login背景时,找到了一张这样的图片:但是设置成login背景时,如果没有做一些css适应设置,图片就变样了,变成了这样:严重变形了,这就造成了一种理想与现实的差距。若想解决这个自适应问题,其实很好解决,只需要在前端代码里加上这样css即可: 1 .main { 2 background: ...
分类:Web程序   时间:2020-11-11 15:50:24    阅读次数:12
使用 CSS 3 操作数据内容样式 -cyy
使用css定制表格: .table{ display:table; /*相当于table*/ section{ &:nth-of-type(1){ display:table-header-group; /*相当于thead*/ background:#555; color:#fff; } &:nt ...
分类:Web程序   时间:2020-11-08 17:12:24    阅读次数:27
6339条   上一页 1 ... 6 7 8 9 10 ... 634 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!