Link to home
Start Free TrialLog in
Avatar of rgb192
rgb192Flag for United States of America

asked on

td border width

is there a way to set the td border width to 300px and border-color:#ffffff
Avatar of AlanNMMX
AlanNMMX
Flag of United Kingdom of Great Britain and Northern Ireland image

Hi, try the following in your CSS file.
td {
  border: 300px solid #FFF;
}

Open in new window

Avatar of Hagay Mandel
This is hoe it's done.
What do you want to achieve?
<style type="text/css">
<!--
td {
	border-top-width: 300px;
	border-right-width: 300px;
	border-bottom-width: 300px;
	border-left-width: 300px;
	border-top-color: #ffffff;
	border-right-color: #ffffff;
	border-bottom-color: #ffffff;
	border-left-color: #ffffff;
}
-->
</style>

Open in new window

Avatar of rgb192

ASKER

is there a way to do this in the td tag
because I only want to use it once and dont want it to overwrite my existing td tag
ASKER CERTIFIED SOLUTION
Avatar of AlanNMMX
AlanNMMX
Flag of United Kingdom of Great Britain and Northern Ireland 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
Avatar of rgb192

ASKER

thanks