Dan0
04-30-2009, 03:58 PM
By searching the web, I was able to piece together html and css for a round corners box. However, the css used causes issues when floating the containing div.
Below is the html and css, and attached is the image file for the rounded corners box. If anyone could review the code and help me understand how to properly (with clean and simple css) put together a rounded corners box it would be appreciated. I'm especially interested in learning how to figure out how much margin and/or padding to use to properly position the four corners. Currently, I've been guessing/checking.
Thanks.
HTML:
<div class="profileBox">
<div class="title">
<h3>Title</h3>
</div>
<div class="content">
<p>Content</p>
</div>
</div>
CSS:
.profileBox, .profileBox .title, .profileBox .title h3, .profileBox .content {
background: #FFFFFF url(../images/rd_indigo_box.png) no-repeat 100% 100%;
}
.profileBox{
min-width: 225px;
max-width: 500px;
margin: 10px 5px;
padding: 0 10px 0 0;
}/* Bottom right */
.profileBox .title{
background-position: 100% 0;
margin: 0 -10px 0 0;
padding: 0 10px 0 0;
max-height: 4.5em;
overflow:hidden;
} /* Top right */
.profileBox .title h3{
background-position: 0 0;
float:left;
color:#FFFFFF;
margin: 0;
padding: 8px 15px 16px;
} /* Top left */
.profileBox .content{
background-position: 0 100%;
margin: 0;
padding: 5px 5px 10px 15px;
overflow: hidden;
} /* Bottom left */
Below is the html and css, and attached is the image file for the rounded corners box. If anyone could review the code and help me understand how to properly (with clean and simple css) put together a rounded corners box it would be appreciated. I'm especially interested in learning how to figure out how much margin and/or padding to use to properly position the four corners. Currently, I've been guessing/checking.
Thanks.
HTML:
<div class="profileBox">
<div class="title">
<h3>Title</h3>
</div>
<div class="content">
<p>Content</p>
</div>
</div>
CSS:
.profileBox, .profileBox .title, .profileBox .title h3, .profileBox .content {
background: #FFFFFF url(../images/rd_indigo_box.png) no-repeat 100% 100%;
}
.profileBox{
min-width: 225px;
max-width: 500px;
margin: 10px 5px;
padding: 0 10px 0 0;
}/* Bottom right */
.profileBox .title{
background-position: 100% 0;
margin: 0 -10px 0 0;
padding: 0 10px 0 0;
max-height: 4.5em;
overflow:hidden;
} /* Top right */
.profileBox .title h3{
background-position: 0 0;
float:left;
color:#FFFFFF;
margin: 0;
padding: 8px 15px 16px;
} /* Top left */
.profileBox .content{
background-position: 0 100%;
margin: 0;
padding: 5px 5px 10px 15px;
overflow: hidden;
} /* Bottom left */