先看效果图: 实现步骤 : 1.新建一个.css的文件,先把样式拷过来 1 .popup_right_bottom{position: fixed; width:400px; height: auto; bottom: 10px; right: 10px; z-index:100; backgrou ...
分类:
其他好文 时间:
2020-12-01 12:16:46
阅读次数:
5
CSS去除表单的默认样式; 去除文本框小蓝框; 去除文本框小红框; 去除多行文本框拖拽; /*去除*/ input{ border-radius: 0; } /*去除Chrome等浏览器文本框默认发光边框*/ input:focus, textarea:focus { outline: none; ...
分类:
Web程序 时间:
2020-12-01 12:00:36
阅读次数:
10
1、CSS的3种导入方式 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!--内部样式--> <style> h1{ color: green; } </style> <!-- ...
分类:
编程语言 时间:
2020-11-30 16:15:02
阅读次数:
11
<div link="/home" class="home" @click="homeLink" :class="{ activeClass: homeIndex }" > 首页 </div> <div link="/category" class="category" @click="catLin ...
分类:
其他好文 时间:
2020-11-27 11:51:45
阅读次数:
19
给所有link和script标签加随机版本号,方便调试样式,不用每次清缓存了; $("link,script").each(function(){ var t=Math.random().toFixed(4); /*var $tag=$(this).prop("tagName").toLowerCa ...
分类:
其他好文 时间:
2020-11-27 11:46:06
阅读次数:
19
// 代理访问和设置 const options = { // 主题色 themeColor: 'red', // 文本主颜色 textColor: '#333', // h1 h2 h3 h4 h5 h1: '1.6rem', h2: '1.4rem', h3: '1.2rem', h4: '1r ...
分类:
Web程序 时间:
2020-11-27 11:40:32
阅读次数:
16
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
正则表达式 元字符 . 任意的一个字符,可以表达汉子 * 前面的字符重复任意次 (wang)* 表示wang重复 X+ 重复1此以上 X{n,} 最少n次 X{m,n} m到nci X{,n} 最多n次 X{m} 精确匹配m次 X? 重复零次 ^ 行首 $ 行尾 \< \b单词词首 \> \b单词词 ...
分类:
系统相关 时间:
2020-11-26 15:19:14
阅读次数:
17
CSS外部样式在head里写入用来链接外部CSS文件h3.red用来表示特定的标签div h1用来表示div里的h1标签text-indent首行缩进line-height行高font-size字体大小font-style字体样式 ...
分类:
其他好文 时间:
2020-11-26 14:35:46
阅读次数:
4
CSS字体样式属性点由量放视质为了更方便的控制网页中各种各样的字体, CSs提供了一系列的字体样式属性font-size属性用于设置字号。font-family属性用于设置字体。font-weight属性用于定义字体的粗细。font-variant属性用于设置变体(字体变化) font-style属 ...
分类:
Web程序 时间:
2020-11-26 14:21:40
阅读次数:
9