Welcome Guest Search | Active Topics | Members | Log In | Register

Rounded Corners in CSS Options · View
adellos
Posted: Wednesday, November 12, 2008 8:51:39 AM

Rank: Administration
Groups: Administration

Joined: 10/28/2008
Posts: 75
Points: 251
I was talking to Jesper about the dotted CSS borders trick and the subject of rounded corners in CSS came up so I showed him my method. There are other ways that I’ve seen it done, but the other methods always require lots of complex HTML and CSS. I figure that lots of nested divs aren’t much better than using a table, so my way doesn’t require much in the way of HTML or CSS. Here’s how I do it.

Create four images for your corners. Most graphics programs have a tool that will create rounded-off squares. I’ll be using this square here…




Code:
<div class="roundcont">
   <div class="roundtop">
     <img src="tl.gif" alt=""
     width="15" height="15" class="corner"
     style="display: none" />
   </div>

   <p>Lorem ipsum dolor sit amet, consectetur adipisicing
   elit, sed do eiusmod tempor incididunt ut labore et
   dolore magna aliqua. Ut enim ad minim veniam, quis
   nostrud exercitation ullamco laboris nisi ut aliquip
   ex ea commodo consequat. Duis aute irure dolor in
   reprehenderit in voluptate velit esse cillum dolore eu
   fugiat nulla pariatur. Excepteur sint occaecat cupidatat
   non proident, sunt in culpa qui officia deserunt mollit
   anim id est laborum.</p>
 
   <div class="roundbottom">
     <img src="bl.gif" alt=""
     width="15" height="15" class="corner"
     style="display: none" />
   </div>
</div>    


Code:
.roundcont {
    width: 250px;
    background-color: #f90;
    color: #fff;
}

.roundcont p {
    margin: 0 10px;
}

.roundtop {
    background: url(tr.gif) no-repeat top right;
}

.roundbottom {
    background: url(br.gif) no-repeat top right;
}

img.corner {
   width: 15px;
   height: 15px;
   border: none;
   display: block !important;
}


Thank You http://kalsey.com/2003/07/rounded_corners_in_css/ for the information

Adam D. Technology
Adam Dellos
adellos@adamdtechnology.com
(520) 591-3891
http://www.adamdtechnology.com
"We give you twice the work in half the time and leave you with a peace of mind!"
Sponsor
Posted: Wednesday, November 12, 2008 8:51:39 AM
Users browsing this topic
Guest


Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Main Forum RSS : RSS

ASPNET Theme created by Boskone (Dan Ferguson)
Powered by Yet Another Forum.net version 1.9.1.8 (NET v2.0) - 3/29/2008
Copyright © 2003-2008 Yet Another Forum.net. All rights reserved.
This page was generated in 0.230 seconds.