<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>小太阳案例</title> <style type="text/css"> /*小太阳*/ * { margin: 0; padding: 0; } html, ...
分类:
其他好文 时间:
2020-02-20 21:56:37
阅读次数:
65
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>过渡动画效果</title> <style type="text/css"> div { width: 100px; height: 100px; backgr ...
分类:
Web程序 时间:
2020-02-20 21:55:04
阅读次数:
69
#1 相对定位 以原来的位置为参考点 <!DOCTYPE html> <html> <head> <title>定位</title> <style type="text/css"> body{ border: 1px solid orange; } div{ width: 200px; height ...
分类:
其他好文 时间:
2020-02-20 15:38:00
阅读次数:
84
html代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" type="text/css" href="./index.css"/> </head> <body ...
分类:
其他好文 时间:
2020-02-20 15:32:51
阅读次数:
77
清除浮动方式之伪元素清除法: <style type="text/css"> .top_bar{ height: 200px; border:1px solid red; } .child1{ width:200px; height:200px; background-color: green; f ...
分类:
移动开发 时间:
2020-02-20 09:52:22
阅读次数:
83
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>清除HTML标签元素的默认样式</title> <link rel="stylesheet" type="text/css" href= "css/reset.css"> </he ...
分类:
Web程序 时间:
2020-02-19 13:02:00
阅读次数:
109
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> </style> </head> <body> <div class="father"> <div class ...
分类:
其他好文 时间:
2020-02-17 17:36:51
阅读次数:
64
CSS称为层叠样式表,用来对网页进行样式处理。今天为大家整理了一些css的一些基础知识,有哪些不对的,请大家多多指正 1.分类 CSS主要分为三种形式 ① 行内 语法<标签名字 style=“样式”> ②内部 语法<style type="text/css">选择的元素 {样式;...}</styl ...
分类:
Web程序 时间:
2020-02-16 20:53:52
阅读次数:
84
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>w3c</title> 6 <link rel="stylesheet" type="text/css" href="css/reset.css"> 7 <li ...
分类:
其他好文 时间:
2020-02-12 18:06:47
阅读次数:
92
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title></title> <style type="text/css"> input { width: 60px; } div { margin: 10px 0 } </style> <scr ...
分类:
其他好文 时间:
2020-02-10 18:15:41
阅读次数:
68