mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
25 lines
435 B
HTML
25 lines
435 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
#first {
|
|
position: relative;
|
|
width: 90px;
|
|
height: 90px;
|
|
border: solid 1px;
|
|
}
|
|
#abs {
|
|
position: absolute;
|
|
margin: 0px;
|
|
top: 30px;
|
|
right: 30px;
|
|
bottom: 30px;
|
|
width: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first">
|
|
<img src="rust_logo.png" width="100" id="abs" alt="Rust Logo" />
|
|
</div>
|
|
</body>
|
|
</html>
|