<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>设置图像宽度高度及边框</title> <style type="text/css"> ul{list-style-type: none;} li{float: left;padd... ...
分类:
其他好文 时间:
2019-09-29 19:55:32
阅读次数:
89
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>插入图像</title> <style type="text/css"> body{text-align: center;} </style> </head> <body> <h2... ...
分类:
其他好文 时间:
2019-09-29 19:33:20
阅读次数:
67
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>浮动框架应用</title> <style type="text/css"> a{width: 300px;margin: 0 10px;} h3{font-size: 28px;... ...
分类:
其他好文 时间:
2019-09-28 18:14:31
阅读次数:
90
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>超链接的应用</title> <style type="text/css"> h1{background: #9999cc;color: white;padding: 10px;h... ...
分类:
其他好文 时间:
2019-09-28 17:59:58
阅读次数:
93
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>文本修饰标记应用</title> <style type="text/css"> *{text-align: center; /* 所有标记的内容居中显示 */... ...
分类:
其他好文 时间:
2019-09-28 17:37:50
阅读次数:
78
用包围文本的成对标记告诉浏览器网页的结构。元素=开始标记+内容+结束标记、 <html> <head> <title>...</title> <style type="text/css"> body { backgroud-color: #d2b48c } </style> </head> <bod ...
分类:
Web程序 时间:
2019-09-27 23:25:07
阅读次数:
172
<html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .menu:hover .menucontent{ display: block; } .menucontent{ width: 120px; d... ...
分类:
其他好文 时间:
2019-09-27 17:41:00
阅读次数:
111
<html> <head> <link href="https://cdn.bootcss.com/Swiper/4.3.0/css/swiper.min.css" rel="stylesheet" type="text/css" /> </head> <body> <!--轮播111--> <di... ...
分类:
其他好文 时间:
2019-09-27 10:27:40
阅读次数:
127
<!DOCTYPE html><html lang="en"> <head> <meta charset="utf-8"> <title>注册</title> <link rel="stylesheet" type="text/css" href="css/common.css"> <link re ...
分类:
Web程序 时间:
2019-09-26 00:25:40
阅读次数:
163
1.引入css <link rel="stylesheet" type="text/css" href=""> 2.常用默认样式 *{ box-sizing: border-box; } ul,ol{ list-style: none; } a{ text-decoration:none; colo ...
分类:
Web程序 时间:
2019-09-25 12:19:46
阅读次数:
129