mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
Base: Add a little web test page for inline elements with CSS padding
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 01:04:13 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/017490aa7f9
15
Base/res/html/misc/padding-inline.html
Normal file
15
Base/res/html/misc/padding-inline.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user