模拟网站 https://redash.io/ 效果先看 完整代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>栅格练习-网站仿写</title> <link rel="stylesheet" type="text/css" ...
分类:
其他好文 时间:
2020-02-09 16:14:18
阅读次数:
63
html代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" type="text/css" href="./index.css"/> </head> <body ...
分类:
其他好文 时间:
2020-02-08 22:08:17
阅读次数:
115
1、css语法 (1) 可以将css样式编写到head中的style标签里,将样式表编写的style标签中,然后通过css选择器选中指定元素 <style type="text/css"> p{ color:red; font-size:40px; } (2)还可以将样式表编写到外部的css文件中, ...
分类:
Web程序 时间:
2020-02-05 16:20:00
阅读次数:
94
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } </style> </head> <body sty ...
分类:
移动开发 时间:
2020-02-05 13:54:00
阅读次数:
107
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="21.css" /> <style> #father{ width:13 ...
分类:
其他好文 时间:
2020-02-04 16:03:05
阅读次数:
87
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>注册页面重新布局</title> <style type="text/css"> .top { border: 1px solid red; width: 32.9%; heigh ...
分类:
其他好文 时间:
2020-02-02 21:31:50
阅读次数:
74
制作目标动画:向上入场添加数据,点击数据右滑动离场 简单页面效果: 实现代码如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" ...
分类:
Web程序 时间:
2020-02-02 01:44:32
阅读次数:
365
效果先看 知识要点 js事件关键字:onmouseover 代码资源 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>模拟淘宝</title> <style type="text/css"> #showdiv{ width: 4 ...
分类:
其他好文 时间:
2020-01-31 15:58:23
阅读次数:
66
选择器 <!doctype html> <html> <head> <title>选择器初级</title> <style type="text/css"> *{margin:0;padding:0;}/*匹配页面中所有的元素*/ div{}/*元素选择器 由标签名来选择元素*/ .box{colo ...
分类:
其他好文 时间:
2020-01-29 17:50:43
阅读次数:
85
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> h1{ text-align: center; } </style> </head> <body> <div id ...
分类:
其他好文 时间:
2020-01-28 14:08:33
阅读次数:
70