1-上中下一栏式 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>上中下一栏式布局</title> 6 <style type="text/css"> 7 body{ 8 /*解决顶部的空白*/ 9 marg ...
分类:
其他好文 时间:
2018-11-13 00:07:39
阅读次数:
173
Bootstrap 导入 <link href="bootstrap-3.3.7/dist/css/bootstrap.min.css" type="text/css"> <script src="js/jquery-3.2.1.min.js"></script> <script src="boot ...
分类:
其他好文 时间:
2018-11-12 13:14:27
阅读次数:
159
代码如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ padding: 0; margin: 0; } ul { list-sty ...
分类:
移动开发 时间:
2018-11-10 15:31:15
阅读次数:
237
1、client系列 代码如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .box{ width: 200px; height: 200px; posit ...
分类:
其他好文 时间:
2018-11-10 15:13:43
阅读次数:
140
无缝轮播实现(比较考验逻辑思维) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ padding: 0; margin: 0; } ul ...
分类:
其他好文 时间:
2018-11-10 15:04:02
阅读次数:
116
模拟百度导航栏滚动监听 代码如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ padding: 0; margin: 0; } u ...
分类:
其他好文 时间:
2018-11-10 14:58:16
阅读次数:
161
一.引入样式 1.行内样式表 <h1 style="color: red;font-size: 18px;">10-30</h1> 2.内部样式表(在head标签里面,title标签下面) <style type="text/css"> h2{ color: yellow; font-size: 2 ...
分类:
Web程序 时间:
2018-11-09 16:05:14
阅读次数:
170
1.伪类 伪类用来指定HTML元素某个状态下的样式,格式 选择符:伪类{属性:属性值} <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>伪类</title> <style type ="text/css ...
分类:
其他好文 时间:
2018-11-05 21:26:57
阅读次数:
144
一.引入样式1.行内样式表<h1 style="color: red;font-size: 18px;">10-30</h1>2.内部样式表(在head标签里面,title标签下面)<style type="text/css">h2{color: yellow;font-size: 20px;}</ ...
分类:
Web程序 时间:
2018-11-02 14:34:40
阅读次数:
144
HTML_初识css3 一.引入样式 1.行内样式表 <h1 style="color: red;font-size: 18px;">10-30</h1> 2.内部样式表(在head标签里面,title标签下面) <style type="text/css"> h2{ color: yellow; ...
分类:
Web程序 时间:
2018-11-02 14:27:16
阅读次数:
222