??颜色不一样
问什么代码一样但百度的字和慕课网的字颜色不一样?
问什么代码一样但百度的字和慕课网的字颜色不一样?
2015-07-25
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>行内元素标签</title> <style type="text/css"> a,span,em{ background:pink;/*设置a、span、em标签背景颜色都为粉色*/ } .beidu{ color:red; } .muke{ color:yellow; } </style> </head> <body> <a class="beidu" href="http://www.baidu.com">百度</a> <a class="muke" href="http://www.imooc.com">慕课网</a> <span>33333</span> <span>44444</span><em>555555</em> </body> </html>
这样就可以看到了
举报