会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wentaokyle
有志者事竟成!(Where there is a will, there is a way !)
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
2016年3月7日
HTML+CSS D07 边框、div
摘要: 1.边框(border) 常用表达 border-width px border-style dotted定义点状边框。在大多数浏览器中呈现为实线。 solid定义实线。 double定义双线。双线的宽度等于 border-width 的值。 groove定义 3D 凹槽边框。其效果取决于 bord
阅读全文
posted @ 2016-03-07 09:20 wentaokyle
阅读(490)
评论(0)
推荐(0)
2016年3月3日
HTML+CSS Day06 超链接的样式与搭配
摘要: 1.格式 a:link {} 普通的、未被访问的链接 a:visited {} 用户已访问的链接 a:hover {} 鼠标指针位于链接的上方 a:active{} 链接被点击的时刻 2.常用内嵌属性 color text-decoration background-color font-famil
阅读全文
posted @ 2016-03-03 20:48 wentaokyle
阅读(391)
评论(0)
推荐(0)
2016年3月2日
HTML+CSS Day05 基本CSS选择器、复合CSS选择器与CSS继承性
摘要: 1.基本CSS选择器 (1)标记选择器 <style> h1{ color:red; font-size:25px;} </style> 例: (2)类别选择器 <style type="text/css"> .p1{background-color:red;color:blue;text-alig
阅读全文
posted @ 2016-03-02 18:02 wentaokyle
阅读(308)
评论(0)
推荐(0)
CSS Day04 css核心基础
摘要: 1.在HTML中引入CSS的方法 (1)行内式 行内式即在标记的style属性中设定CSS样式,这种方式本质上没有体现出CSS的优势,因此不推荐使用。 例如: <h1 style=“color:white; background-color:blue”>这是一行文本/h1> 例1: (2)嵌入式 嵌
阅读全文
posted @ 2016-03-02 09:19 wentaokyle
阅读(198)
评论(0)
推荐(0)
2016年2月29日
HTML day03表格与表单
摘要: 1.表格 一般格式: <table> <thead><!--表格头--> <tr> <th></th> </tr><!--表格中的一行数据--> </thead> <tbody><!--表格体--> <tr> <td></td> </tr> </tbody> <tfoot><!--表格脚--> <t
阅读全文
posted @ 2016-02-29 22:30 wentaokyle
阅读(212)
评论(0)
推荐(0)
2016年2月26日
HTML day02(html列表与菜单的制作)
摘要: 1.无序列表 格式: <ul> <li type=“disc”>…</li> disc:实心圆点 <li type=“circle”>…</li> circle:空心圆圈 <li type=“square”>…</li> square:实心方块 </ul> 2.有序列表 格式: <ol> <li t
阅读全文
posted @ 2016-02-26 21:41 wentaokyle
阅读(628)
评论(0)
推荐(0)
HTML day01基础总结
摘要: 1.网页的基本元素 文字、图像与超链接。 2.每一个网页元素通常由开始标记、结束标记,以及在这两个标记中的内容所组成。 3.一般结构 <html> <head> <metahttp-equiv="Content-Type" content="text/html; charset=utf-8" />
阅读全文
posted @ 2016-02-26 10:09 wentaokyle
阅读(153)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
公告
其他资源可以访问我的CSDN博客