background preloader

Tutorials

Facebook Twitter

How to Create CSS3 Pricing Tables. Hello guys!

How to Create CSS3 Pricing Tables

In this tutorial we’ll learn how to code and style some CSS3 pricing tables from the Impressionist UI. All said, let’s start the coding… Topic: CSS3Difficulty: IntermediateEstimated Completion Time: 45 min Step 1 – HTML We will create a table with the class “pricing-table”, this class will be the base to add our styling. Step 2 – Basic CSS Before starting styling the pricing table, we will add a CSS reset file to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, etc. Then we will set the width for the pricing tables. Step 3 – Plan Section For the plan section we will set the width (this width value will be also used in the next sections), the height, add some padding and rounded corners using the “border-radius” property. We also have two different color schemes, green and orange. Step 4 – Price Section The price section is the most difficult one because we have a lot of details here.

Step 5 – Features Section Conclusion. How to Create a CSS3 Dropdown Menu [Tutorial] Topic: CSS3Difficulty: BeginnerEstimated Completion Time: 20 mins In this tutorial we will code in pure CSS3 the Navigation Menu that you can find in Impressionist UI by Vladimir Kudinov.

How to Create a CSS3 Dropdown Menu [Tutorial]

Step 1 – HTML Markup We will create an unordered list with a list item and an anchor tag for each menu link. To create the sub menu add another unordered list inside of the list. Step 2 – Menu Layout We will start to remove the margin, padding, border and outline from all the elements of the menu. We will hide the sub menu temporarily to be easier to style the first level. Step 3 – Menu Links To style the menu links we will add some basic CSS properties like font, color, padding, etc. Step 4 – Sub Menu First let’s remove this line of code that we have added on the second step. Free CSS3 Menu and Navigation Tutorials. The main motto of a website is to attract the viewers.

Free CSS3 Menu and Navigation Tutorials

Being a web designer your prime objective should be to attract the viewers to the website. With eye-riveting designs and efficient functionality websites can draw attraction of the visitors. CSS3 menus are very useful to add that extraordinary effect to any website. However, the website designers must be aware about the proper use of these menus as well; otherwise they cannot optimize the visual effect of a site. There are several numbers of free and useful tutorials available on the internet that helps the website designers to know about the latest CSS3 menus. However, many web designers are still not confident to take the advantage of these remarkable CSS3 website menus because of the lack of support of some browsers. Importance of CSS3 Menus in Web Designing One of the most important parts of a website’s interface is menus. All these and many more can be learnt by any web designer through the free and useful CSS3 menu tutorials.

Creating a 3D Button in CSS3. Topic: CSS3Difficulty: BeginnerEstimated Completion Time: 30 mins Today I want to show you how to use some of the awesome new features in CSS3 to create an animated, three-dimensional button. To start off, we care about creating a fun experience that works to its full potential in the browsers that support it, but degrades gracefully in the browsers that don’t. In other words, if it isn’t fully supported, it shouldn’t look or behave as if it’s broken. Let’s jump right in by adding a link that we will turn into our button.

You could do this using an <input> or <button>, but I’m going to use an <a> element. Now we can start adding CSS. There is nothing fancy there, just a nice large button styled with some vanilla CSS. CSS3 Gradients The syntax for CSS3 gradients can be a bit overwhelming at first, so for this tutorial we’ll use a code generator to make the gradient.

Then use these colors to create your gradient: #609bcb and #4a85b5. Next we should add a :hover style. Introducing Shadows.