You are on page 1of 3

Thorough Detail Of Grid View In Responsive

Web Design
Summary
Responsive web design is nothing but designing the websites to be compatible
on every screen size. Responsive grid view means the web pages are divided into
the section or columns, known as grids. A standard responsive grid view has 12
columns.

What Is A Grid View?


1. Grid view means the web pages are divided into the section or columns,
known as grids.
2. While designing the web pages, it is important to use grid view.
3. Grid view facilitates the placement of various elements on the page.

How Does The Standard Grid View Looks Like?


1. A standard responsive grid view has 12 columns.
2. It has 100% total width.
3. It will shrink or expand as and when you resize the browser window.

How To Build A Responsive Grid View?


1. All the HTML elements should have the box-sizing property equal to
border-box.
2. Padding and border need to be included in the overall height and width
of the elements.
Insert the following code snippet in your CSS:
*{
box-sizing: border-box;
}
Dividing The Web Page In 12 Columns
1. We can divide a responsive web design with grid-view having 12 columns.
2. Calculate the percentage for one column as 100% / 12 columns = 8.33%.
3. Make one class for all the 12 columns.
class="col-" and a number displaying how many columns the section need to
span
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

Example Of Responsive Web Design Implementing Grid View


To divide the web page in two columns, such as 35% and 65%.
.menu {
width: 35%;
float: left;
}
.main {
width: 65%;
float: left;
}

Use Of Responsive Design In Ecommerce Website Design


Services
1. For designing ecommerce website, it is important to make them
responsive.
2. Most of the ecommerce websites are accessed using mobile phone.

Intelecorp Software Pvt Ltd.


Intelecorp is one of the top web design company in India that can help you
leverage their expertise. If you’re intrested in web design Services and need a
technology & promotional partner, have a look at our services for your current
and future projects.

Contact Us :
Contact No. : 022-40011888
Email Us : info@intelebiz.com
Visit Website : https://www.intelebiz.com/service/web-design/

Thank You .....

You might also like