1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 05:05:08 +00:00

Base: Add a little web test page for inline elements with CSS padding

This commit is contained in:
Andreas Kling 2020-12-03 19:32:07 +01:00
parent f35b406dfb
commit 017490aa7f
2 changed files with 16 additions and 0 deletions

View 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>