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

Custom Checkbox Button

Hello Guys This article will guide you To Create Custom Check box by using simple HTML and CSS. Here is the demo of custom check box Here is the HTML <input type="checkbox" id="1"><label for="1"><span></span&g...

Add or Remove Class by Using Jquery

Hello Guys The below example will guide you to add or remove class by using jquery. So if you are stuck in such case follow the below code. Here is the HTML Code <nav> <ul> <li><a href="javascript:v...

custom checkbox and radio button using pure css

Hi all, Here is an example of custom radio button and check box using pure css. I hope it will helps you. CSS :- **/*Radio button*/ .radio, .checkbox{display: inline-block;} .radio { padding:5px; margin-left:40px; } .radio input[ty...

Fonts sizes

Hello Readers In this article I will guide you about the font size diffidence pixels, points, ems & %. Here is a flow chart below in which I have mention the difference between pixels, points, ems & %. these font sizes are not actual. ...

Bootstrap versus Foundation

*{margin:0;padding: 0;} .mdUP table{border-collapse: collapse;width: 100%;margin:10px 0;} .mdUP table thead{background: #ccc;} .mdUP table th, .mdUP table td{padding: 5px;text-align:center;border:1px solid #ccc;} ...

Guide to Flexbox

pre{padding:4px;margin:5px 0;border-radius:0;color:#fff;background:#333;border:none;} Introduction : The flexible box called as flexbox is an powerful idea to give the container ability to alter their items You can adjust child eleme...

Css3 transition effect

Hello Readers This blog will describe about, what is transition property in CSS3. transition property The transition property specifies the name of the CSS property, the transition effect starts when the specified CSS property changes). CSS3 ...

stylish check box using pure css

Hi all, Below is an example of custom check box, using pure css here is no any script. You can use this example many type, like to select some image or theme. I hope it will helps you somewhere. HTML:- <div class="wrap"> ...

CSS3 Selectors

pre{padding:4px;border-radius:0px;} Hi all, Selector are the basic component in the CSS. Here's a definition of the selector from W3C documentation - A Selector represents a structure. This structure can be used as a condition (e.g. in...

How to set a type on buttons

The default value is submit, meaning any button in a form can submit the form. Use type="button" for anything that doesn't submit the form and type="submit" for those that do. <button type="submit">Save changes</button> <button...

Switch list/grid view using jQuery

Hi all, Below is an example of switching between list and grid view using jQuery. $( document ).ready(function() { $('.show-list').click(function(){ $('.wrapper').addClass('list-mode'); }); $('.hide-list').c...

How nth-child Works ?

Hi folks, The :nth-child(n) selector is a pseudo element. which show the position on there parents element. You can use (even) and (odd) for all even or odd child element. :nth-child(odd) For example:- tr:nth-child(2n+1) Rep...

Simple custom dropdown by using css

Hello Readers Here is the example of custom drop down by using Css and HTML. Here is the HTML <div class="container"> <div class="customSelect"> <span class="arrow"></span> <select i...

Flipping a div by css3

Hello Readers Here is the example of Flipping a div with css3 transitions and 3d transforms. <div id="container"> <div id="card"> <div class="frontFace"> <h2>Hover Me to view effect</h2>...

CSS support guide

Hello all, below is a list of a complete CSS support for every mobile, web and desktop email. *{margin:0;padding:0;} .mybox table{font-size: 13px;font-family:'arial';border-collapse: collapse;} tr.header{height:auto;} ...

How to Develop Game Using Pure CSS3 ?

Hello all, Below is an example of pure CSS3 game using CSS3 animation. This example show efficiency of CSS3. Below is the sample of flying plane game. CSS:- * {margin: 0;padding: 0;} .board {width: 300px;height: 600px;margin:20px aut...

How to make simple Overlay popup ?

Hello readers! Here is Example of Overlay popup. It is very simple and responsive. Hope it will helps you somewhere. Html:- <div class="container-popup"></div> <div class="popup"> <span id="close">...

what is clearfix?

Hello readers ! Today We will discuss about clearfix If you have any floating div inside a container and want to clear the floats normally you may are using clear:both class because this is simplest and most common way to solve this. But it...

How to use SVG in html

Hello Readers! In this blog we will discuss about SVG. Scalable Vector Graphics (SVG)? is a type of image format, which is based on XML. SVG makes a vector graphic quality in such a way that the graphic quality will not become dull if you zo...

Useful Short Hand and CSS Rule Set

Hello readers, Below is some useful example of css rule set and css shorthand. By using css shorthand you can save your time. CSS rule set- Rule set for font declaration:- body {font: italic small-caps normal 13px/150% Arial, Helvetica...

To Make a Preloader Using HTML and CSS

Hello readers, If you want to make a preloader using HTML and CSS follow the below code: Html <div class="circle"> <div class="inner"> <div class="spot"></div> </div> </div> <...

Use of Box Sizing

What is box-sizing ? Box-sizing is a css3 property. It is used to tell browser that width padding border should include the object according to size, which is define by user. For example, you have a text area with 100% widt...

Use of css Property calc()

Hello readers ! In this blog we will discuss on a css property named calc(). What is calc() ? This is a way to change simply any numeric value in CSS automatically. like height, width, margin, padding, font-size, background-position etc ...

Creating Horizontal Menu Bar Using Html and CSS

Hello readers, If you want to create a horizontal menu bar in a web page using HTML and CSS follow the below code. CSS:- <style type="text/css"> #menu { font-family: Arial, Verdana; font-size: 14px; margin: 0; ...

Typography viewport size

Hello reader, In this blog we will discuss about, how to manage font size in different viewport. Usually we fix the font size with different viewport size using @media. But as we know CSS3 has some new values. Viewport size: vw, vh, and vm...

Evon Logo Using CSS

Hello readers ! Here is an example of css3 by using these codes you can make any logo. There is no use of any image. For example I used the same code to make Evon Logo. If you want to use the same code for creating other logo you have to do so...

css3 animation game

Duck game using pure CSS3 Hello all, Below is an example of pure CSS3 game using CSS3 animation, pseudo class. This example show efficiency of CSS3. There is no .gif image used. Find the attachment for complete code below. *{margin...

Create shapes using css

Hello readers! In this blog we will discuss how to make shapes using css only. to make any shape we have to know mainly about 2 pseudo Elements. ::before :- We can use this element to insert some content before an element. ::after :- W...

What is meta tag and there uses.

p {padding-left:3px;font-style:italic !important} Hello Readers, Usually we all uses the meta tags, but don't know properly what are these, their actual uses & their importance? So here I will explain you about meta tags and i hop...

Jquery Animation

Jquery animate() method is used to animate any element in the web page. It allow us to create custom animations.The syntax for this: $(selector).animate({params},speed,callback); The parameters of animate() mehod are: The params parameter de...

How to Create Accordion

Hello All, If you want to make an accordion, this code will help you to make a dynamic accordion using HTML, CSS and Jquery. An accordion is a stacked list of items. Each item can be "expanded" or "stretched" to reveal the content associated...

CSS Positioning

As I am a fresher to web design, I don't know exactly all the concepts of positioning and their differences. But as much i have studied the CSS Positioning, I can explain it here as far as my knowledge.Positioning is used to get the blocks exactl...

Custom checkbox using jquery

Hello Reader ! Here is an example how to make a custom check box using simple script and css. Script $(document).ready(function(){ $('label').click(function(){ $(this).toggleClass('checkedN'); }); }); css .checkedN {ba...

Prevent from text selection on double click of mouse.

Sometime you may need to prevent from text selection on double click of mouse button. You can use use the following css3 code for the same:- .monthReport label {-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-mo...

Dynamic horizontal scroller

Hello All, The following code will help you to make dynamic horizontal scroller. This means that on adding content or images the width of the container automatically increases using jquery. If anyone wants to make horizontal scroller which is i...

How to create a Sticky Menu bar with CSS and Jquery

In this example, we will create a simple webpage that consists of the header, the navigation and the content. <div class="wrapper"> <div class="header"> Header </div> <div class="nav"> ...

Box-shadow effect using css3

Hello readers ! This blog show how you can use shadow effect using css3. CSS :- body { background: #F2F2F2; color: #999; padding: 0; margin: 0; } .container { width: 820px; margin: 10px auto; padding:...

Simple CSS3 Animation Example

Hi, Here is an example of a simple animation showing a tree growing on the field and then some rays coming over it. For this I will be using following images. bg.jpg treetrunk.png branches.png rays.png shadow.png ...

Method eq() in jquery

Description: The eq ( index ) method reduces the set of matched elements to a single element or we can say that find the element that matches or equals the index provided. Syntax: Here is the simple syntax to use this method: selector.eq ( i...

Wobble Effect by HTML 5 animation

<!DOCTYPE html> <html> <head> <title>wobble effect</title> <style> body { background-color: tomato; } .container { position: absolute; top: 40px; left: 140px; } .slices { position: a...

Enhancing HTML Content by Pseudo Elements

Pseudo Elements play important role while designing some web based stuff. With pseudo elements we can add content after or before any element in our web page. Below is very simple demonstration. <h1>Use of Before</h1> <h2>U...

How to make iframe responsive

Hello reader ! How to make responsive iframe. We all are face this problem normally so there is an example and i hope it will helps you. CSS :- .wrapper { width: 50%; } .container { height: 0; width: 100%; paddin...

CSS 3 Filters

With CSS3, we can apply filters to our HTML elements in order to make them more interactive. There is no reqiurement of any designing software like photoshop anymore for making such effects. Below are some filter examples:- Blur:- value from...

css3 Animation

Hello readers ! In this blog i'll show how to use animation attribute in css3. By attribute you can replace animated gif images, Flash animations, and JavaScripts also. Okay lets start Its have two part :- First we are describe the object...

Pure css custom checkboxes and radio buttons

Hello guys, It's my first post and in this post I am showing you, how can we customize checkbox and radio input with the help of css. Yes, now we can customize form elements with css. It's not complicated but little tricky. So lets start ...

How to use transform property of css3

Hello Readers ! In this blog we will discuss about css3 new attribute transform and transition. Okay let's start :- Transform : Mainly transform property uses for give small animation or movement of any object. To use this you have to...

What are Animations in CSS3?

<!DOCTYPE html> <html> <head> <style> @keyframes anim { from {background:#fff;} to {background:#00ff;} } @-webkit-keyframes anim /*Safari and Chrome*/ { from {background:#000;} to {background:#090909;} } div ...

CSS3 Pseudo-elements

Hello readers ! In this blog i'll explain what is Pseudo-elements and how can we use it. What is pseudo-classes ? - Pseudo-classes are some special classes which are used to for special effect. You can also use it with css ...

How to use transform-rotate property in CSS3?

<!DOCTYPE html> <html> <head><title>css3</title> <style> div { width:200px; height:200px; margin:80px; background-color:#000000; /* Rotate div */ transform:rotate(60deg); -ms-transform:rotate(60deg)...

How to open and close div using css

Hello! readers, There is an example to show a div on click using only css. You can use it as popup box also. --css-- .show , .hide{color:#FC6} #contain {display: none; border:1px solid #999;padding:10px;width:200px;margin-top:10px} ...
1 7
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: