mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
15 lines
283 B
HTML
15 lines
283 B
HTML
<style>
|
|
span {
|
|
padding-left: 20px;
|
|
padding-right: 40px;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
background-color: red;
|
|
border: 3px solid black;
|
|
color: white;
|
|
}
|
|
</style>
|
|
<div>
|
|
<span>Hello friends!</span>
|
|
<span>This span has padding!</span>
|
|
</div>
|