| <head> | |
| <style> | |
| body { | |
| --large: 50px; | |
| --small: 25px; | |
| } | |
| .first { | |
| padding-inline-start: var(--large); | |
| padding-inline-end: var(--small); | |
| height: 50px; | |
| margin: 20px; | |
| } | |
| .inner { | |
| width: 50px; | |
| height: 50px; | |
| background-color: blue; | |
| } | |
| div { | |
| display: inline-block; | |
| background-color: green; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="first"><div class="inner"></div></div> | |
| <span dir="rtl"><div class="first"><div class="inner"></div></div></span> | |
| </body> | |
| </html> |