picture (border only to...">

Column left and bottom

I need to create a border according to the example below.

HTML:

<table width="770">
  <tr>
    <td>picture (border only to the left and bottom ) </td>
    <td>text</td>
  </tr>
  <tr>
    <td>text</td>
    <td>picture (border only to the left and bottom) </td>
  </tr>
</table>

      

+5


source to share


3 answers


you can use these styles:

style="border-left: 1px solid #cdd0d4;"  
style="border-bottom: 1px solid #cdd0d4;"
style="border-top: 1px solid #cdd0d4;"
style="border-right: 1px solid #cdd0d4;"

      

with this you want u should use



<td style="border-left: 1px solid #cdd0d4;border-bottom: 1px solid #cdd0d4;">  

      

or

<img style="border-left: 1px solid #cdd0d4;border-bottom: 1px solid #cdd0d4;"> 

      

+14


source


Give a class .border-lb

and give this CSS

.border-lb {border: 1px solid #ccc; border-width: 0 0 1px 1px;}

      

And HTML

<table width="770">
  <tr>
    <td class="border-lb">picture (border only to the left and bottom ) </td>
    <td>text</td>
  </tr>
  <tr>
    <td>text</td>
    <td class="border-lb">picture (border only to the left and bottom) </td>
  </tr>
</table>

      



Screenshot

Fiddle: http://jsfiddle.net/FXMVL/

+4


source


You need to use the border property as shown here: jsFiddle

HTML:

<table width="770">
    <tr>
        <td class="border-left-bottom">picture (border only to the left and bottom ) </td>
        <td>text</td>
    </tr>
    <tr>
        <td>text</td>
        <td class="border-left-bottom">picture (border only to the left and bottom) </td>
    </tr>
</table>`

      

CSS

td.border-left-bottom{
    border-left: solid 1px #000;
    border-bottom: solid 1px #000;
}

      

0


source







All Articles