Articles in ‘CSS’

Content Wrapper to avoid wrong clearing

Tuesday, March 10th, 2009

to avoid long empty spaces when clearing a float environment, wrap the content into a div with the following properties:

.wrapper {
position:relative;
overflow: hidden;
}

CSS > Transparent Background

Saturday, September 20th, 2008
filter: alpha(opacity=70);
-moz-opacity:0.70;
opacity:0.70;

Toggle Visibility und co

Sunday, November 18th, 2007
in fact, it's toggle display here. The difference is that visibility reserves the space on the page but just does not display the text there and display really collapses the text to the remaining parts.

JavaScript Function:

 <script lang
[...more...]

BrowserTipps

Tuesday, September 25th, 2007
Verschiedene Browser, verschiedene Sorgen... das Leben als Pixelschubse ist schon manchmal nicht so einfach. Dank des genialen Buchs "CSS Layouts" von Dirk Jesse, das ich an dieser Stelle no
[...more...]

Marking External Links

Wednesday, January 24th, 2007
External Links können - falls gewünscht - mit einem kleinen Bildchen versehen werden, damit der User sieht, dass es sich hierbei um einen externen link handelt das hat sicher wieder was mit regexp zu tun, gell Stefan?
  #main a[href^="http:"], #
[...more...]