今天小编跟大家讲解下有关hr 样式实现1px直线 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关hr 样式实现1px直线 的相关资料,希望小伙伴们看了有所帮助。
<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type"content="text/html; charset=gb2312"/> <!--因为IE8的关系 在IE8下面没法模拟成1PX直线 所以要开启IE7模式--> <meta http-equiv="X-UA-Compatible"content="IE=EmulateIE7"/> <title>无标题文档</title> <style type="text/css"> hr{ border-bottom:1px solid #D9D9D9; height:1px; } </style> </head> <body> <hr /> </body> </html> 提示:您可以先修改部分代码再运行来源:爱蒂网