Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Some Important Properties in Css

Properties are the most important features of the CSS as specify the visibility, size, and precise position of individual elements in a document. Other CSS properties allow you to specify stacking order, transparency, clipping region, margins, pa...

jQuery clone() Method

The clone() method is used to make clone of the elements that are matching to the selected elements and select the clones. It basically makes copies of the selected DOM element to some other place in the DOM. Syntax: selector.clone() ...

snow fall effect using pure css

Hi all, Below is an example of snow falling effect using pure css3. in this example I'm just using css animation and change the snow image position - css #snow{ background: none; background-image: url('snow.png'),url('snow2.png'...

DOM Element Replacement in jquery

If you want to replace html element with some other element, the jquery replaceWith method can be used. You can replace some specified DOM element with the other html or DOM element. The replaceWith() method is used in this case. Syntax: ...

How to change the background color on a input checkbox with css

Pseudo elements are useful for changing the background colour of the checkbox and radio buttons. We can use :before and :after to change the colour or appearance of the checkboxes. It can all work with css styling. Example: <div class="c...

custom side bar with the help of jquery

Hello Readers In this article I will guide you how to create custom side bar with the help of jquery. Here is the HTML <section id="slideBox" class="open"> <nav id="menu"> <ul> ...

Measurement Units supported in CSS

CSS supports the following Measurement Units % :- This is % symbol used when we want to give a measurement as a percentage. e.g:-div{width:100%;} cm :-An abbreviation of centrimeters is cm and it is used when we want to give a mea...

Simple Zebra Table by using Css3

Hello Readers, Here is the Example of Simple Zebra Table. Here is the HTML <table> <tr> <th>Name</th> <th>Date of Birth</th> <th>Age</th> ...

What is a Web Worker?

Hi all, Below is a short description of web workers. What is a Web Worker? Web worker is JavaScript which runs in backside without affecting the performance of site and it is independent of other the scripts,. what web worker are f...

Bootstrap float

how to float an element to left or right. Bootstrap provides predefined classes pull-right and pull-left which floats an element to the left or right according to the requirement. For example if you want to float an image to the right and text...

What is css gradients ?

Hello All, Earlier, we have used image for gradients effect but now we will use gradient using css3 and we will see how to use many colors in gradient and only one color in gradient. Gradients are declared by background-color but according ...

What is semantic elements ?

Hello all, Semantic elements clearly defines its content. It means that elements which are recognize by their name in html for example <hedaer > , <nav> , <footer>. You can say it helps understand what is happening on the pag...

html link

How can you create image as a link in html. You can make an image as an link as through following coding.This make your link more eye-catchy and you can also make logo as link thus making your page more effective. <a href="default.asp"&g...

html link styles

html link styles. We can change the style of link such as background color, color and text decoration on various event done by mouse such as hover,active and visited through style property.Customization can be done according to your requiremen...

html address

html address. html5 provides an inbuilt tag <address>.Through this tag you can define contact information of a document or article.The element between the address is displayed in italic and also most browsers will also add line break bef...

Column offseting.

How can we increase the left margin of a column in bootstrap. In bootstrap we can increase the left margin of a column by adding class offset. for example by adding .col-md-offset-4 moves .col-md-4 by four places. <div class="row"> ...

What is grid system ?

What is grid system ? Grid usage to guide design and page layout is in practice for around 100 years now Rationalism and New Objectivity came into picture in 1910s and 1920s due to ornamental design This shift in design was responsib...

Text highlight

How to highlight a text in bootstrap In bootstrap we can highlight the important text with the tag <mark>. Thus text can be easily highlighted and customization can be done as required. As shown in example below name of country's get...

Gradient

How to create background of two colors. In bootstrap we can create background of two colors with the help of gradient.You can also specify the angle os standard two color. #gradient > .vertical(#333; #000); #gradient > .horizontal(#...

Clearfix

how to clear floats in bootstrap. Bootstrap provides an predefined class .clearfix through which you can clear floats just by adding this class to the parent element. .clearfix() { &:before, &:after { content: " "; ...

Feedback with optional icons

Feedback with optional icons. Bootstrap provides classes to add optional feedback icons which would required manual positioning for inputs. Thus, it save a lot of time for making it user friendly. This can be done by adding class .has-feedback...

Validation states

Validation states We can denote the state of a form through visual,color-based indications.This can be done through using classes as .control-label, .form-control, and .help-block.These are the validation styles for warning, error and success ...

Table specific customization

How to customize a table to your requirement. We can also apply specific characterstics for a table.To define special style for a table we can add id attribute to the table. <table id="t01"> <tr> <th>Firstname</...

Table caption

How to add a caption to a table. We can also give heading to a table making it more attractive.This can be done by adding caption attribute to the table. <table style="width:100%"> <caption>Monthly savings</caption> ...

Table rowspan

How to create cell span of more than one column in a table. To create a cell span of more than one row in a column we add the attribute rowspan to that column and designate its value.The value of rowspan determine the number of rows a cell spa...

Table colspan

How to create cell span of more than one column in a table. To create a cell span of more than one column in a row we add the attribute colspan to that column and designate its value.The value of colspan determine the number of columns a cell ...

Table heading.

How to create heading in a table. It is very easy to create heading in a table.We can do it by adding <th> tag for the content of row to be shown as heading. <table style="width:100%"> <tr> <th>Firstname<...

What is progress Element in HTML5 ?

The <progress> Element is use to show the completeness of the task. We can use script to manipulate the value of progress bar. This tag is new in HTML5 and progress element have start tag (<progress>) and end tag (</progress>...

Images shapes

Images shapes. In bootstrap,we can modify shape of image just by adding pre-defined classes as img-rounded,img-circle,img-thumbnail.It saves a lot of time of developer as prevents them from long and confusing coding for creating different shap...

Static Contol

Static Control. When we need to insert an plane text in front of form label we can do this by adding a class .form-control static class.Thus bootstrap provides an predefined class for inserting an plane text thus making it more effecient for ...

Checkboxes and radios

Checkboxes and radios. In bootstrap we can add features of multiple selection from group of choices with the help of checkboxes while for selecting one option out of many we use radios.It also provides an option of disabled checkboxes and radi...

Star rating using pure css

Hi all, Below is an example, how to make star rating using pure css. CSS - .rate { float: left; } .rate:not(:checked) > input { position:absolute; top:-9999px; } .rate:not(:checked) > label { float:right; ...

Horizontal form

Horizontal form. Bootstrap provide us the feature to align labels and groups of form controls,we can do so by adding .form-horizonal class to the form.Required customization can be done by little effort making it more user friendly and time sa...

Contextual classes

Contextual classes In bootstrap we can create color table rows and cells with the help of contextual classes such as active,success,info,warning,danger. <!-- On rows --> <tr class="active">...</tr> <tr class="success...

Media queries

Media queries In bootstrap we can create responsive site which can run on desktop as well as mobile.Thus breakpoints can be defined by using media queries whose attributes can be changed under specified conditions. <!-- Stack the colum...

What is input pattern ?

The pattern value is use in input box which tells the user, In which pattern value will store in database. If the value is according to pattern then data will store otherwise it will shows an error. Its works with following input types:- t...

Bootstrap Pager

Bootstrap Pager In case of multiple pages in bootstrap,we can also create previous and next links for effective pagination. This is used when the number of pages are less in quantity. It is great and effective for simple sites blogs or magazin...

Bootstrap pagination

Bootstrap pagination In case of multiple pages in bootstrap,we can also number them making our presentation more efficient.This can be done through pagination.These large blocks is hard to miss,easily scalable and provides large click areas. ...

Javascript Carousel

Javascript Carousel In javascript you can create a slideshow with the help of carousel.So multiple slides can be created making our presentation more attractive and user-friendly. <div id="carousel-example-generic" class="carousel sli...

Javascript toggle

Javascript toggle In javascript you can create toggle behaviour wit the help of flexible plugin that utilizes a handful of classes. The class collapse hides the content,class collapsing is applied during transitions and class collapse.in show...

Progress bars in Bootstrap

Progress bars in Bootstrap. Bootstrap helps in providing up-to-date feedback on the progress of a workflow or action.This can be done by using progress bars.You can also add label to the progress bar thus making it more user-friendly. <d...

Links in alerts

Links in alerts. In bootstrap we can also create matching colored links along with the alert messages.Through this you can add a link whenever contextual message pop's up under specified action.This can be done by adding alert-link class. &...

Bootstrap Alerts

Bootstrap Alerts. Bootstrap provides a medium to print contextual feedback messages for typical user actions with the handful of available and flexible alert messages.These alert messages pop-up under specified user action which can be manipul...

Bootstrap badges(active nav states)

Bootstrap badges(active nav states) Bootstrap provides built-in styles which can be included in bootstrap navs or more for placing badges in active states in pill navigations. <ul class="nav nav-pills" role="tablist"> <li role="...

Bootstrap badges

Bootstrap badges. Badges can be easily created by adding a predefined class badge to links of nav bar in Bootstrap.You can customize it further according to your requirement. <a href="#">Inbox <span class="badge">42</span>...

How CSS triangles work?

Hello folks, How css triangle works ? actually when we create css triangle, its means we are just showing and hiding borders of any element. The angle intersects at (45) so the intersection edge is used by border here and we can also skew a...

Bootstrap Buttons

Bootstrap Buttons Bootstrap provides button classes to quickly create a styled button.So you can design any type of buttons with little effort and customization. <!-- Standard button --> <button type="button" class="btn btn-defaul...

Pre loader using pure css

Hi All, Below is some example of pure css loader. Using css animation. All are single element loader. Please, check the below code for details. section{ margin: 10px 0; } .loader { position: absolute; z-index: 1; left: 0; ...

Pre vs. Code

<code> use for inline code it can wrap and <pre> for block code that must not wrap so, new lines and spaces get rendered as new lines.. It is little mystified by the <pre> and <code> tags. If youre not sure which to use...

Websites speed optimization process.

Following are some steps to increase page loading speed: Step 1: HTML Design Use Div based html design for your website. Table based design will take more loading time as compare to div based design. Step 2: Use External JavaScript and ...
1 5 7 8
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: