随笔分类 -  HTML+CSS学习之路

摘要:<link rel="icon" type="image/ico" href="images/favicon.ico" /> 阅读全文
posted @ 2020-05-16 01:02 WP-WangPin 阅读(281) 评论(0) 推荐(0)
摘要:搜引擎优化 阅读全文
posted @ 2020-05-16 01:00 WP-WangPin 阅读(97) 评论(0) 推荐(0)
摘要:/* 把我们所有标签的内外边距清零 */ * { margin: 0; padding: 0; box-sizing: border-box; } /* em 和 i 斜体的文字不倾斜 */ em, i { font-style: normal } /* 去掉li 的小圆点 */ li { list 阅读全文
posted @ 2020-05-15 22:43 WP-WangPin 阅读(117) 评论(0) 推荐(0)
摘要:* { margin: 0; padding: 0; } .w { width: 1200px; margin: auto; } body { background-color: #f3f5f7; } li { list-style: none; } a { text-decoration: non 阅读全文
posted @ 2020-05-11 16:52 WP-WangPin 阅读(129) 评论(0) 推荐(0)
摘要:<!DOCTYPE html> 告诉浏览器页面采用的是html版本显示页面 <html lang="zh-CN"> 告诉浏览器这是中文网页 <meta charset="UTF-8"> 采用UFT-8保存文字 <p> </p> 是段落标签 ,段落与段落之间存在一行的空隙 <br> 是强制换行,行与行 阅读全文
posted @ 2020-04-27 00:39 WP-WangPin 阅读(121) 评论(0) 推荐(0)