NetProgrammingHelp.com
Asp.Net,C#,Ajax,Sql server,silverlight,Javascript codes exambles articles,Programming exambles

'CSS' Category

Creating Shadow Effects Using CSS

Posted by James Categorized Under: CSS Add Comments

Introduction: Shadow Effects are creating somekind of 3D effects in ours webpage.We can easily create shadow effect using CSS IE filter: attribute. Main: Just we are going to use builtin opacity CSS graphics,and its available in IE,mozilla,Firebox but different way. In IE, style=”filter: alpha(opacity= 50)” In Mozilla/Firebox, style=”mozopacity:0.5″ In Opera, style= “opacity:0.5″ These 3 CSS [...]

Designing Website Headers using CSS

Posted by James Categorized Under: CSS Add Comments

Introduction: This article demonstrates,how to design a Website Headers using CSS. Main: Css Code for Website title, #Banner { background-color:#F8FAFC; margin-top:15px; font:normal 34px ‘Trebuchet MS’, Tahoma, Verdana; display:block; }   #subtitle { background-color:#F8FAFC; display:block; float:left; font:normal 12px Tahoma, Verdana, Arial; height:19px; line-height:18px; color:#A7A7A7; } Conclusion: Hope this helps, Happy Coding.

Best CSS Progress Bar’s

Posted by James Categorized Under: CSS 3 Comments

Introduction: Sometimes, when we are building websites and web applications, we need a percentage bar / progress bar to show the progress of a specific task.Otherwise User May irritated, Main: Lot of Free Css Progress bars available in Internet, CSSGLOBE WEBAPPERS http://ashung.deviantart.com/art/CSS-Progress-Bar-122803902 http://livepipe.net/control/progressbar BARNAKEDAPP Conclusion: Hope this helps, Happy Coding.

How to Create Multi Column layout using CSS

Posted by James Categorized Under: CSS Add Comments

Introduction: In this artcle we are going to discuss about how to create multi column layout using CSS. For downloading sample code click here multi-column.zip Main: See this below sample html and css for multi column layout,  <body>         <div id=’header’>            <h1>Header</h1>         </div>         <div id=’container’>  //Menu Section             <div id=’first-column’>                 Text [...]

How to Designing div using absolute and relative positioning.

Posted by chandru Categorized Under: CSS Add Comments

Absolute Positioning The normal behavior of the browser (for English) is to read the document from left to right and top to bottom. This is referred to as document flow. In the normal flow, each block element sits on a new line beneath the previous block element, and each inline element sits beside each previous [...]