目录结构 引用路径 <link rel="stylesheet" href="../static/layui/css/layui.css" type="text/css"/> application.properties spring.mvc.static-path-pattern=/static/ ...
分类:
编程语言 时间:
2021-02-17 14:04:34
阅读次数:
0
使用css3的flex模型实现一个居中布局 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 <title>flex居中布局</title> 6 <style type="text/css"> 7 html, 8 bod ...
分类:
Web程序 时间:
2021-02-15 12:24:42
阅读次数:
0
相对定位 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> * { margin: 0; padding: 0; } .box1{ w ...
分类:
其他好文 时间:
2021-02-15 11:57:41
阅读次数:
0
代码如下: <style type="text/css"> .title{ position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 300px; height: 300px; font-size: 2 ...
分类:
Web程序 时间:
2021-02-04 11:40:34
阅读次数:
0
CSS ##选择器 类选择器 . id选择器 # 标签选择器 某标签名 嵌入方式: - 行内 style="color:blue" - 内部<style type="text/css"> - 外部<link href="demo.css" rel="stylesheet"> 高级选择器: first ...
分类:
Web程序 时间:
2021-01-28 12:12:11
阅读次数:
0
<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> .box { background: #f00; width: 0px; height: 0px; positi ...
分类:
Web程序 时间:
2021-01-28 11:37:28
阅读次数:
0
<!DOCTYPE html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> ul,li { list-style: none; margin: 0; padding: 0; } .tabBox { wid ...
分类:
Web程序 时间:
2021-01-27 14:03:18
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .p1{ width: 100px; height: 30px; font-size: 20px; backgro ...
分类:
其他好文 时间:
2021-01-22 12:04:01
阅读次数:
0
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style type="text/css"> 6 *{ 7 margin: 0; 8 padding: 0; 9 } 10 nav ul{ 11 list-style: n ...
分类:
其他好文 时间:
2021-01-20 11:56:23
阅读次数:
0
例: <link href="../resources/css/iconfont/iconfont.css" rel="stylesheet" type="text/css"> 加上 rel="stylesheet" 否则会不显示 ...
分类:
其他好文 时间:
2021-01-16 11:41:26
阅读次数:
0