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

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...

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">...

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> <...

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...

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...

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...

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"> ...

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...

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 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} ...

How to Clearing floats

A common problem with float-based layouts is that the floats' container doesn't want to stretch up to accomodate the floats. If you want to add, say, a border around all floats (ie. a border around the container) you'll have to command the browse...

Document type declaration

Document type declaration ( Or DOCTYPE ) What is Doctype ? The<!DOCTYPE> is not a HTML tag. It is an instruction to web browser about what version of HTML the page is written in. In HTML 4.0...

Html normally problem

Hello readers ! In this blog i show how can we solve html problems usually we face that are :- 1) How to align center a absolute position div : Its a normally problem which we face always we can solve it using this attribute of css ....

How to create a transparent image with CSS?

<!DOCTYPE html> <html> <head><title>css3</title> <style> div.bg { width:500px; background:#000; border:2px solid #00ff00; } div.transparent-box { width:400px; margin:40px; backg...
1 3 next
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: