mirror of
https://github.com/servo/servo.git
synced 2025-06-10 17:43:16 +00:00
52 lines
944 B
HTML
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>
|