Posted On April 4, 2019

Basic CSS: Use Clockwise Notation to Specify the Margin of an Element

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Use Clockwise Notation to Specify the Margin of an Element
<style>
.injected-text {
margin-bottom: -25px;
text-align: center;
}

.box {
border-style: solid;
border-color: black;
border-width: 5px;
text-align: center;
}

.yellow-box {
background-color: yellow;
padding: 20px 40px 20px 40px;
}

.red-box {
background-color: crimson;
color: #fff;
margin: 20px 40px 20px 40px;
}

.blue-box {
background-color: blue;
color: #fff;
}
</style>
<h5 class="injected-text">margin</h5>

<div class="box yellow-box">
<h5 class="box red-box">padding</h5>
<h5 class="box blue-box">padding</h5>
</div>

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Querying Internal DNS for Host Record for iDRAC IPs

Copy / Paste for quick results: $domain='hooli.com'$records=Get-DnsServerResourceRecord -ZoneName $domain -ComputerName $env:USERDNSDOMAIN$records|?{$_.HostName -like '*drac*' -and $_.RecordType…

PowerShell: How To Disable and/or Stop Windows Service

Disable and Stop Using Native Command 'Set-Service' # To disable service as well as stopping…

Build a JavaScript Calculator

Demo: https://blog.kimconnect.com/wp-content/projects/calculator.html HTML Code: <link href='//fonts.googleapis.com/css?family=Bungee' rel='stylesheet'><div class='container'> <div id='calculator'> <!-- TITLE --> <div id='title'…