A Few CSS Snippits That I Can’t Live Without
CSS snippets are a great way to save time while developing CSS on your site. If you frequently find yourself using the same batch of CSS, it’s probably a good idea to save them to some sort of snippet library. If you don’t already have a library of CSS snippets, here are a few to get your collection going:
- Rounded Corners:
Standard:
- -moz-border-radius: 10px;
- -WebKit-border-radius: 10px;
- border-radius: 10px; /* future proofing */
- -khtml-border-radius: 10px; /* for old Konqueror browsers */
Individual Corners:
- -moz-border-radius-topleft: 10px;
- -moz-border-radius-topright: 20px;
- -moz-border-radius-bottomright: 30px;
- -moz-border-radius-bottomleft: 0;
- -webkit-border-top-left-radius: 10px;
- -webkit-border-top-right-radius: 20px;
- -webkit-border-bottom-right-radius: 30px;
- -webkit-border-bottom-left-radius: 0;
- Box Shadows:
.shadow {
-moz-box-shadow: 5px 5px 5px #ccc;
-webkit-box-shadow: 5px 5px 5px #ccc;
box-shadow: 5px 5px 5px #ccc;
}
- Text Shadows:
- p { text-shadow: 1px 1px 1px #000; }
- Multiple Shadows: p { text-shadow: 1px 1px 1px #000, 3px 3px 5px blue; }
- Text Rotation:
.rotate {
/* Safari */
-webkit-transform: rotate(-90deg);
/* Firefox */
-moz-transform: rotate(-90deg);
/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
- *BONUS HTML SNIPPIT* Make IE6 Crash (My favorite, even though I’ve yet to use it):
<style>*{position:relative}</style><table><input></table>
What are some of your favorite CSS Snippets? Feel Free to Share!
eMUNICATIONS is a new Acquia Partner – One of Only 3 in Texas
eMUNICATIONS is Proud to Announce its New Partnership with Acquia!!
Acquia was founded by Dries Buytaert, the original creator and project lead of the Drupal project, and Jay Batson, previously founder and CEO of Pingtel. The Acquia Network provides an operations portal to deliver technical support and site monitoring services to maintain trouble-free Drupal websites. Additionally, by offering commercial-grade support from Acquia’s Technical Assistance Center, they help organizations implement Drupal with confidence.
After a lengthy application process, eMUNICATIONS was recently approved as a partner of Acquia. eMUNICATIONS is one of only three approved Acquia Partners in the State of Texas and the only approved Acquia Partner in Houston. As a partner, eMUNICATIONS will have access to Acquia partner tools to leverage eMUNICATIONS’ current Drupal knowledge, further benefitting eMUNICATIONS’ clients. Additionally, eMUNICATIONS will benefit from the referral program offered by Acquia. Further, this partnership enhances eMUNICATIONS’ position as a contributing member to the Drupal community.
So, if you are looking for a proven leader in Drupal development with strong ties to the Drupal community, you need to look no further than eMUNICATIONS. Contact us today to learn how we can benefit you with your Drupal project.