Archive for the ‘CSS’ Category

CSS Mixer

 Css mixer is a tool I’ve developped in C# winforms, .NET framework 3.5
You can use it to improve you ASP.NET Themes or your CSS files for all your web projects.
If you have many css files linked to a page, you can group them in a single file with CSS Mixer.
You can also minify CSS files [...]

More »

How to build a “visible on hover” action menu with CSS?

In my previous post I explain a way to build a “visible on hover” menu using jQuery.
Now, I’ll explain you how to do that without javascript, using only CSS.
First, built the web page and a CSS file

<html>
<head>
<title>Sam Beauvois | CSS on hover menu</title>
<link href="demo.css" type="text/css" rel="stylesheet" />
</head>

<body>
<h2>Visible on hover [...]

More »