随笔分类 -  xhtml & css

xhtml & css 简易学习笔记(三)
摘要:1、Child Selectors.what is a child, what is a parent? for example , <body> is child of <html>, <html> is parent of <body>例:<html> <head> <style type="text/css"> p > a{ color:red; font-size:30px; } </style> </head> <body> <a h 阅读全文
posted @ 2012-08-27 17:33 zyearn 阅读(422) 评论(0) 推荐(0)
xhtml & css 简易学习笔记(二)
摘要:1、List:unorder List:<ul> <li>apple</li> <li>banana</li> <li>orange</li> <li>pineapple</li> </ul>order List:<ol> <li>apple</li> <li>banana</li> <li>orange</li> <li>pineapple</li> </ol& 阅读全文
posted @ 2012-08-10 18:48 zyearn 阅读(144) 评论(0) 推荐(0)
xhtml & css 简易学习笔记(一)
摘要:xhtml和css是用来制作网页的语言。1、推荐编辑软件: Notepad++2、一般格式<html> <head> ....... </head> <body> ....... </body> </html>3、给网页加title:<head> <title> xxxxxx </title> </head>4、注释:<!-- 注释内容 -->5、换行 :<br />水平线:<hr />,水平线效果如下:6、标题:<h1> xx 阅读全文
posted @ 2012-07-19 19:56 zyearn 阅读(159) 评论(0) 推荐(0)