Category Archives: CSS

Best 5 CSS3 Style for Textbox

Generally Textbox style in form or login or regitration page will makes the website looks much pretty. Using css3 style properties i have given some 5 type of style here with coding General CSS [code type=css] input[type=TEXT] { width:225px; height:26px; } [/code]   View Demo Type 1 Textbox [code type=html] [/code] [code type=css] #text1 {… Read More »

Category: CSS

CSS Style for Textbox, Textarea, Dropdown Box, Submit Button

Applying CSS Style to textbox, textarea, dropdown box and submit button will enhance the user interface. Without applying style, these input elements won’t looks more catchy. By pure CSS, we can make a better style to the textbox, textarea, dropdown box and submit button. Below there are two images before applying css and after applying… Read More »

Category: CSS

li Design with Close Button Using jQuery

li Design with Close Button Using jQuery. In this tutorial there are two features highlighting, one is box-shadow when move mouse on the box and another one is close button for every box. In this article i have explained how to make this box-shadow and close button. we are going to use CSS and jQuery.… Read More »

Add Scroll bar to div

Generally scroll bars are available in browser and in drop down listbox. Scroll bars are used to put large amount content in some fixed area, when users wants to see next item then he have to scroll the scroll bar. overflow: scroll css property is used to make a scroll bar in div element. When… Read More »

box-shadow CSS3 Property

CSS3 having property calle dbox-shadow, which will makes shadow color and image for a box. By using this we don’t need of any work done in photoshop or illustrator. This property isn’t more complicated, just we have to give value for left align, top align, blur value and color of shadow. [code type=css] 1] box-shadow:… Read More »

Category: CSS

CSS Cursor Property

Cursor in webpage is used to differentiate text and links. Some text will need pointer cursor as like the cursor of link, this can be achieved by CSS cursor property. For example. In jquery show and hide function, normal div/span tag have to be act like a pointer. By using below code we can made… Read More »

Category: CSS