FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

TheBestTutorials.css Containers


The Container Class

The TheBestTutorials-container class is the most important of the TheBestTutorials.css classes.

The TheBestTutorials-container class is used for all types of HTML container elements like:

<div>, <header>, <footer>, <article>, <section>, <blockquote>, <form>, and more.

This Header is Green.


This footer is red.


This article is light grey and the text is brown.


Containers Provides Equality

The subhodaya-container class is important for providing equality:

  • Common margins
  • Common paddings
  • Common vertical alignments
  • Common horizontal alignments
  • Common fonts
  • Common colors

To use a container, just add a TheBestTutorials-container class to any element:

Example

<div class="subhodaya-container">
  <p>The TheBestTutorials-container class is an important TheBestTutorials.css class.</p>
</div>
Try It Yourself »

To add a color, just add a TheBestTutorials-color class:

Example

<div class="subhodaya-container subhodaya-red">
  <p>London is the capital city of England.</p>
</div>
Try It Yourself »

Headers and Footers

The TheBestTutorials-container class can be used to style a header:

Header

Example

<header class="subhodaya-container subhodaya-teal">
  <h1>Header</h1>
</header>
Try It Yourself »

The TheBestTutorials-container class can be used to style a footer:

Footer

Footer information goes here

Example

<footer class="subhodaya-container subhodaya-teal">
  <h5>Footer</h5>
  <p>Footer information goes here</p>
</footer>
Try It Yourself »

Articles and Sections

The TheBestTutorials-container class can be used to style <article> and <section> elements:

Example

<div class="subhodaya-container">
  <h2>London</h2>
  <p>London is the most populous city in the United Kingdom,
  with a metropolitan area of over 9 million inhabitants.</p>
</div>

<article class="subhodaya-container">
  <h2>Paris</h2>
  <p>The Paris area is one of the largest population centers in Europe,
  with more than 2 million inhabitants.</p>
</article>

<section class="subhodaya-container">
  <h2>Tokyo</h2>
  <p>Tokyo is the center of the Greater Tokyo Area,
  and the most populous metropolitan area in the world.</p>
</section>
Try It Yourself »

Many web pages uses <div> elements instead of <article> and <section> elements.


Notes, Panels, and Quotes

The subhodaya-container class can be used to display all kinds of notes:

London is the capital city of England.

Example

<div class="subhodaya-container subhodaya-pale-blue subhodaya-leftbar subhodaya-border-blue">
  <p>London is the capital city of England.</p>
</div>
Try It Yourself »

The TheBestTutorials-container class can be used to display all kinds of panels:

London is the capital city of England.


London is the capital city of England.

Example

<div class="subhodaya-container subhodaya-light-grey subhodaya-border">
  <p>London is the capital city of England.</p>
</div> 
Try It Yourself »

The TheBestTutorials-container class can be used to display all kinds of quotes:

"Make it as simple as possible, but not simpler."

Albert Einstein

Example

<div class="subhodaya-container subhodaya-leftbar subhodaya-sand">
  <p><i>"Make it as simple as possible, but not simpler."</i></p>
  <p>Albert Einstein</p>
</div>
Try It Yourself »

Go to the chapter TheBestTutorials.css Borders to learn more about displaying notes, panels, and quotes.


Web Page Example

Header

Car

A car is a wheeled, self-powered motor vehicle used for transportation. Most definitions of the term specify that cars are designed to run primarily on roads. (Wikipedia)

Footer

Example using HTML <div> elements

<div class="subhodaya-container subhodaya-red">
  <h1>Header</h1>
</div>

<img src="img_car.jpg" alt="Car" style="width:100%">

<div class="subhodaya-container">
  <p>A car is a wheeled, self-powered motor vehicle used for transportation. Most definitions of the term specify that cars are designed to run primarily on roads. (Wikipedia)</p>
</div>

<div class="subhodaya-container subhodaya-red">
  <h5>Footer</h5>
</div>
Try It Yourself »

Example using HTML semantic elements

<header class="subhodaya-container subhodaya-teal">
  <h1>Header</h1>
</header>

<img src="img_car.jpg" alt="Car" style="width:100%">

<article class="subhodaya-container">
  <p>A car is a wheeled, self-powered motor vehicle used for transportation. Most definitions of the term specify that cars are designed to run primarily on roads. (Wikipedia)</p>
</article>

<footer class="subhodaya-container subhodaya-teal">
  <h5>Footer</h5>
</footer>
Try It Yourself »

Container Padding

The subhodaya-container class has a default 16px left and right padding, and no top or bottom padding:

I have no top or bottom padding

Example

<div class="subhodaya-container subhodaya-blue">
I have no top or bottom padding.
</div>
Try It Yourself »

Normally you will not have to change the default padding of a container, because paragraphs and heading provide margins that will simulate padding.

I am a Heading

I am a paragraph.

Example

<div class="subhodaya-container subhodaya-blue">
  <h1>I am a Heading</h1>
  <p>I am a paragraph.</p>
</div>
Try It Yourself »

Container Sectioning

The subhodaya-container class has no default top or bottom margin.

Two containers will display without a margin between them:

I am a Heading

I am a paragraph.

I am a Heading

I am a paragraph.

The subhodaya-section class can be used to separate containers. It has 16px top and bottom margin:

I am a Heading

I am a paragraph.

I am a Heading

I am a paragraph.

Example

<div class="subhodaya-container subhodaya-section subhodaya-blue">
  <h1>I am a Heading</h1>
  <p>I am a paragraph.</p>
</div>

<div class="subhodaya-container subhodaya-section subhodaya-green">
  <h1>I am a Heading</h1>
  <p>I am a paragraph.</p>
</div>
Try It Yourself »

Hide (Close) a Container

Hiding a container is easy.

×

To close this container, click on the X in the upper right corner.

Example

<div class="subhodaya-container subhodaya-red">
  <span class="subhodaya-closebtn" onclick="this.parentElement.style.display='none'">X</span>
  <p>To close this container, click on the X in the upper right corner.</p>
</div>
Try It Yourself »

Show (Open) a Container

Showing (a hidden) container is easy:

Example

<div id="id01" class="subhodaya-container subhodaya-section subhodaya-green" style="display:none">
  <span onclick="this.parentElement.style.display='none'" class="subhodaya-closebtn">X</span>
  <p>London is the capital city of England.</p>
</div>
Try It Yourself »