servo/tests/ref/outset.html
2014-12-16 16:00:45 -08:00

52 lines
944 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0px;
}
.test {
color: #f0f;
}
.outset {
border: 10px outset;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
}
.hack1 {
width: 20px;
height: 20px;
background-color: white;
border-color: white;
border-style: solid;
position: relative;
top: -20px;
right: 8px;
}
.hack2 {
width: 20px;
height: 20px;
background-color: white;
border-color: white;
border-style: solid;
position: relative;
top: -155px;
right: -100px;
}
</style>
</head>
<body>
<section class="test">
<div class="outset"></div>
</section>
<div class="hack1"></div>
<div class="hack2"></div>
</body>
</html>