postImage

CSS Colors, Backgrounds, Borders, Margins and Padding

blogImage

By Emmanuel Chinonso

Web Developer

CSS Colors, Backgrounds, Borders, Margins and Padding

CSS color property defines the text color or the foreground color of an element.

Contrast Bootstrap UI Kit

Colors are specified using predefined names such as RGB, HEX, HSL, RGBA, HSLA values.

CSS Code:

css
body {
color: #ff5722;
}

Colors in CSS are predefined with color name. Example are grey, red, blue, green etc.

Defining color values

The format for setting color values are A color keyword like "green", "yellow", "transparent", etc are used. A hex value is like #ff0000, #00ff00, etc . A RGB value is like rgb(255, 0, 0).

CSS Background color: HTML element are set with background colors

Code:

html
<h1 style ="background-color: yellow;">Hello World</h1>

CSS Text Color: Text color can also be set in CSS.

Code:

html
<h1 style = "color: tomato;" > Hello world</h1>

CSS Background:

This property allows CSS to add background effects for elements. We are going to look at several background properties. We have already looked at background-colors.

Background Image:

The CSS Background image specifies the use of an image on the background of an element. By default, the image is repeated to cover the entire element.

Code:

css
body {
background-image: url("google.jpg");
}

CSS Background-repeat:

Some images should only be repeated horizontally or vertically, or they will look strange

CSS Code:

css
body{
background-image: url("google.jpg");
background-repeat: repeat-x;
}

The background-image can also be shown once

Code:

css
body{
background-image: url("google.jpg");
background-repeat: no-repeat;
}

The background-position is also used to specify the position an image should be.

Code:

css
body{
background-image: url("google.jpg");
background-repeat: no-repeat;
background-position: right-top;
}

CSS Border:

This property allows you to define the border area of an element’s box. It appears between the margin and padding of an element. It allows you to also show the style, width, and color of an element’s border. Some of the values allowed in the border property are dotted, dashed, solid, double, groove (defines a 3d grooved border), ridge, inset, outset, none, and hidden.

CSS Code:

css
body {
border-style: solid;
}

Border-width:

This property shows the width of the borders. The width can be specific size(in, px, pt, cm, em, etc)

Code:

css
body {
border-style: inset;
border-width: 5px;
}

Border color:

This property shows sets the color of the border. The color can be in HEX, RGB, HSL and transparent. In the case the color is not set it takes the color of the element.

Code:

css
p.one {
border-style: solid;
border-color: blue;
}

Border style

It is possible to specify different border for each side.

Code:

css
p {
border-top-style: dotted;
border-right-style: solid;
border-bottom-style: dotted;
border-left-style: solid;
}

CSS Margins:

The CSS Margin property allows you to set space around the border of an element. It’s not usually affected by background-color, it’s always transparent. CSS margin has a property for specifying the margin for each side of an element.

Code:

css
p {
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: 80px;
}

CSS Padding: Padding is used to create space around the element’s content, inside a defined border. Individual sides of the element are also padded.

Code:

css
div {
padding-top: 50px;
padding-right: 30px;
padding-bottom: 50px;
padding-left: 80px;
}

Padding and element width:

The width property specifies the width of the element’s content area. The content area is the portion inside the padding, border, and margin of an element. The padding added to the element when the width is also stated is calculated together to give the total width.

Code:

css
div {
width: 300px;
padding: 22px;
}

In these code you will see that the actual width is not 300px but 344px (300 + 22px of left padding + 22px of right padding}.

Contrast Bootstrap UI Kit

Build modern projects using Bootstrap 5 and Contrast

Trying to create components and pages for a web app or website from scratch while maintaining a modern User interface can be very tedious. This is why we created Contrast, to help drastically reduce the amount of time we spend doing that. so we can focus on building some other aspects of the project.

Contrast Bootstrap PRO consists of a Premium UI Kit Library featuring over 10000+ component variants. Which even comes bundled together with its own admin template comprising of 5 admin dashboards and 23+ additional admin and multipurpose pages for building almost any type of website or web app.
See a demo and learn more about Contrast Bootstrap Pro by clicking here.

ad-banner

Related Posts

Comments

...