HTML and CSS Reference
In-Depth Information
/* Gradients */
.intro
{
border: 1px solid #999999;
text-align:left;
margin-top: 6px;
padding-left: 15px;
border-radius:25px;
background-image: -webkit-linear-gradient(45deg, #ffffff, #6699cc);
background-image: linear-gradient(45deg, #ffffff, #6699cc);
}
/* Setup a table for the content and sidebar */
#contentArea
{
display: table;
}
#mainContent
{
display: table-cell;
padding-right: 2px;
}
aside
{
display: table-cell;
width: 280px;
}
/* Setup multiple columns for the articles */
article div
{
text-align:justify;
padding:6px;
-webkit-column-count: 2;
column-count: 2;
-webkit-column-gap: 20px;
column-gap: 20px;
}
/* Add the box shadow */
article img
{
margin: 10px 0;
box-shadow: 3px 3px 12px #222;
}
Search WWH ::




Custom Search