mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
20 lines
453 B
HTML
20 lines
453 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<link rel="match" href="reference/inline-block-with-css-background-ref.html" />
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
margin: 0;
|
||
|
}
|
||
|
.box {
|
||
|
margin-top: 8px;
|
||
|
width: 200px;
|
||
|
}
|
||
|
.box span {
|
||
|
background: rgb(138, 100, 229);
|
||
|
border: 3px solid orange;
|
||
|
font-size: 16px;
|
||
|
color: rgb(255, 255, 255);
|
||
|
padding: 5px 13px;
|
||
|
}
|
||
|
</style>
|
||
|
<div class="box"><span>Text</span></div>
|