opera下outline遮盖了顶层box怎么处理?
opera下outline遮盖了顶层box怎么处理?
求高手说说该怎么hack?
<!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><title>opera outline bug</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><body> <style type="text/css"> .box_1,.box_2{width:200px;height:200px;} .box_1{outline:1px solid red;overflow:hidden;} .box_2{ position:absolute; background-color:tan; top:100px; left:100px; } </style> <div class="box_1"> <h2>box_1</h2> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> </div> <div class="box_2">box_2 z-index:10</div></body></html>