Skip to content

Instantly share code, notes, and snippets.

@davidvanvickle
Created August 24, 2012 23:16
Show Gist options
  • Save davidvanvickle/3457025 to your computer and use it in GitHub Desktop.
Save davidvanvickle/3457025 to your computer and use it in GitHub Desktop.
css tips
/* apply to parent container to clear children that float */
#divparent:after,
{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/* get rid of the outline that appears in IE when an A tag is clicked */
a {
outline: transparent none medium;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment