第二部分是属性选择器; 第三部分是伪类选择器 基本选择器 通配符选择器 通配符选择器是用来选择所有元素,也可以选择某个元素下的所 有元素 案例 示例11-1:通配符选择器 shtn,ype html> <ldoct <meta charset="utf-8 <te>通配符选择器<rite> <style type="text/css"> padding border: 1px solid #F00 <>1<> <i>2</i> <li>4</i> <i>5</i> <i>7<li> 2《网页设计与网站规划》讲稿/河南中医学院互联网应用技术研究所/htp/ bs. 51xueweb cn2 《网页设计与网站规划》讲稿 / 河南中医学院互联网应用技术研究所 / http://labs.51xueweb.cn 第二部分是属性选择器; 第三部分是伪类选择器。 二、基本选择器 2.1 通配符选择器 通配符选择器是用来选择所有元素,也可以选择某个元素下的所 有元素。 案例: 示例 11-1:通配符选择器 <!doctype html> <html> <head> <meta charset="utf-8"> <title>通配符选择器</title> <style type="text/css"> * { margin:3px; padding:0px; border:1px solid #F00; } </style> </head> <body> <div> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> <li>7</li> <li>8</li> </ul> </div> </body> </html>