Monday, November 23, 2015

How to give Vertical align - middle for Div Element?

HTML:
<div class="myAlign"> Sample Content Here</div>


CSS:
.myAlign{
height: 300px;
display: table-cell;
vertical-align: middle
}

Simple Parallax Design for your website.

Hii......Dudes click the link and download the Parallax for your website


Wednesday, October 8, 2014

How to give 100% Background Image with CSS?

CSS Style:
.mybox{
    background-image:url("images/sample-image.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
 
 
 
 

Tuesday, October 7, 2014

News Tickers : Javascript and jquery news tickers and news scrollers, Flash news tickers and flash scrollers - free download

http://azoftsolutions.com/nextgenweb/best-news-scrollers-using-javascript-jquery-css.rar

How to give or apply css to Ordered list Numbers

HTML Ordered List:

<ol class="mylist">
              <li>Fist list item</li>
              <li>Second list item</li>
              <li>Third list item</li>
              <li>Fourth list item</li>
              <li>Fifth list item</li>
              <li>Sixth list item</li>
              <li>Seventh list item</li>
</ol>

CSS Styles: