Quantcast
Channel: Adobe Community: Message List
Viewing all articles
Browse latest Browse all 87055

Re: How do I Border only some cels in table

$
0
0

Without getting into the why's and why-not's of using tables, you would style the borders of individual <td> tags with css either directly with a style attribute, or by adding a class to the cell...

 

<td style="border-left:1px solid #000000;border-right:2px solid #ffffff;border-top:3px solid blue;border-bottom:5px solid orange;">

 

or the much better approach, with a class...

 

.yourclass {

border-left:1px solid #000000;

border-right:2px solid #ffffff;

border-top:3px solid blue;

border-bottom:5px solid orange;

}

 

The html would be...

 

<td class="yourclass">

 

http://www.w3schools.com/css/css_border.asp


Viewing all articles
Browse latest Browse all 87055

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>