Link to home
Start Free TrialLog in
Avatar of sindhuxyz
sindhuxyz

asked on

rounded corners

Hi,

How can I make rounded corners with border lines as blue and whole background as white for my data.
I want this to work with all browsers. I have found some articles using Google, but they all are for CS3 only. I cannot ignore IE6 and Safari

Please see image  
snap.bmp
Avatar of dsmile
dsmile
Flag of Viet Nam image

How about a div, span or table with blue border, size=1px and then 4 corners overlayed by 4 images that show corresponding blue corner? (http://web-graphics.com/mtarchive/001660.php)

Here's 25 ways to have round corner, you should take a look at this  http://www.devwebpro.com/25-rounded-corners-techniques-with-css/
This tutorial looks like what you need http://www.cssplay.co.uk/boxes/snazzy.html
Avatar of leakim971
You saw this ONE ?
Avatar of sindhuxyz
sindhuxyz

ASKER

@leakim971
ID: 34180083

I am exactly looking for this, border blue with background grey/white, can u please tell me source code for it?
Sorry for my mistake, @dsmile
is what I am looking for.

ID:  ID: 34180077

Can anyone provide me source for it?
Here is the 'old-fashioned' way to do it.  It uses a table and three images for top, middle, and bottom.  The quality and shape of the rectangle depends on your graphics program.  This version is for a fixed width table.  There are more complicated versions for variable width tables or screens.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<title>Round Rectangle</title>
<style type="text/css">
<!-- 
.ttop {
	height: 22px;
	background-image: url(RoundRectTop.jpg);
	} 
.tmid {
	background-image: url(RoundRectMid.jpg);
	} 
.tbot {
	height: 22px;
	background-image: url(RoundRectBot.jpg);
	} 
-->
</style>
</head>
<body>
<h1>Round Rectangle Demo</h1>
<table border="0" cellpadding="7" cellspacing="0" summary="" width="274px">
<tr><td class="ttop"></td></tr>
<tr><td class="tmid">&nbsp;<br />
This is where the text goes.<br />
&nbsp;</td></tr>
<tr><td class="tbot"></td></tr>

</table>
</body>
</html>

Open in new window

RoundRectTop.jpg
RoundRectMid.jpg
RoundRectBot.jpg
ASKER CERTIFIED SOLUTION
Avatar of scrathcyboy
scrathcyboy
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
However, Dave's diagrams do not leave you room for text in the upper and lower areas.  The most complete way to do this is with images ONLY for the corners.  I will try a picture to show you --

               -------------------------------------------
     r.img  |     text in line w. image corners   |   r.img

 And the bottom is an inverse of this -- r.img above is just the rounded corner nothing else.

This can best be done with a 5 cell wide table, one for each rounded corner, one for the vertical line, and another for the text in between.
@sindhuxyz: go to http://www.cssplay.co.uk/boxes/snazzy.html, viewsource and grab the code.

This is the result
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head>


<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title> Test Snazzy Borders</title>

<style type="text/css">

#xsnazzy h1, #xsnazzy h2, #xsnazzy p {margin:0 10px; letter-spacing:1px; padding:0;}
#xsnazzy h1 {font-size:2.5em; color:#fff;}
#xsnazzy h2 {font-size:2em;color:#06a; border:0;}
#xsnazzy p {padding-bottom:0.5em;}
#xsnazzy h2 {padding-top:0.5em;}
#xsnazzy {background: transparent; margin:25px 1em 100px 1em;}

.xtop, .xbottom {display:block; background:transparent; font-size:1px;}
.xb1, .xb2, .xb3, .xb4 {display:block; overflow:hidden;}
.xb1, .xb2, .xb3 {height:1px;}
.xb2, .xb3, .xb4 {background:#ccc; border-left:1px solid #08c; border-right:1px solid #08c;}
.xb1 {margin:0 5px; background:#08c;}
.xb2 {margin:0 3px; border-width:0 2px;}
.xb3 {margin:0 2px;}
.xb4 {height:2px; margin:0 1px;}

.xboxcontent {display:block; background:#ccc; border:0 solid #08c; border-width:0 1px;}


</style>
</head>

<body>

<div id="xsnazzy">
<b class="xtop"><b class="xb1"></b><b class="xb2"></b><b class="xb3"></b><b class="xb4"></b></b>
<div class="xboxcontent">
<h1>Snazzy Borders</h1>
Grabbed from http://www.cssplay.co.uk/boxes/snazzy.html
</div>
<b class="xbottom"><b class="xb4"></b><b class="xb3"></b><b class="xb2"></b><b class="xb1"></b></b>

<br class="clear"><br>

</body></html>

Open in new window

@sindhuxyz: have you seen http://www.cssplay.co.uk/boxes/snazzy.html on IE6 & Safari for yourself??? You asked for CSS, I gave you one working solution, but then you accept a none-solution. This is really ridiculous.

@scrathcyboy: with all due respect, see it for yourself once.
2010-11-23-09-49-51.png
snazzy-safari.png