mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00
20 lines
No EOL
473 B
HTML
20 lines
No EOL
473 B
HTML
<!DOCTYPE html><html><head><style>
|
|
* {
|
|
border: 1px solid black !important;
|
|
}
|
|
.outer {
|
|
float: left;
|
|
background: pink;
|
|
}
|
|
.first {
|
|
display: inline-block;
|
|
width: 100%;
|
|
background: orange;
|
|
}
|
|
.second {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: magenta;
|
|
}
|
|
</style>
|
|
</head><body><div class="outer"><div class="first">programming</div><div class="second"></div> |