CSS Amazing tricks

Css Round Corner

div.rounded {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding:10px;
  border:3px solid #f3ddac;
  background: #fff3d8;
}

the html

<div class="rounded">
<h2>The Example</h2>
</div>

Certainly, it’s perfectly work on Firfox !

Creating Link Blocks

a.blocklink {
display:block;
width:160px;
background:#f0f0f0;
color:#999;
font-family:corbel, verdana, sans-serif;
padding:4px;
text-decoration:none;
font-weight:normal;
font-size:0.72em;
border:1px solid #dadada;
}
a.blocklink strong {
font-family:georgia, helvetica, sans-serif;
display:block;
color:#656565;
font-weight:bold;
font-size:1em;
margin:0 0 3px 0;
font-style:italic;
}
a.blocklink:hover {
background:#dcdcdc;
color:#303030;
border:1px solid #adadad;
}
a.blocklink:hover strong {
color:#cb0000;
}

the html

<a href="#" class="blocklink">
<strong>Link Block Heading</strong>
This is the text contained within the link block... </a>

Mimicking Drop Shandow

img.demo2 {
padding:1px;
border:2px solid #dcdcdc;
background:#ababab;
}

This entry was posted on Thursday, February 26th, 2009 at 10:51 pm and is filed under css, web practice. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

2 Responses to “CSS Amazing tricks”

Mashupdesign January 9th, 2011 at 12:58 am

Mashupdesign…

[...] something about mashupdesign[...]…

Aido October 17th, 2011 at 12:36 pm

This is {very|really} interesting, {You are|You’re} a very skilled blogger. {I have|I’ve} joined your {feed|rss feed} and look forward to seeking more of your {great|wonderful|fantastic|magnificent|excellent} post. Also, {I have|I’ve} shared your …

Hey There. I found your blog using msn. This is an extremely well written article. I’ll be sure to bookmark it and return to read more of your useful info. Thanks for the post. I will definitely return….

Leave a Reply

You must be logged in to post a comment.