Computer Science, asked by sahanuralam335, 19 days ago

Create a html table having table header, three row and four column and border colour blue.

Answers

Answered by palaksoni5274
0

Answer:

have a table of 3 by 3. I need a way to add a border for the bottom of every row tr and give it a specific color.

First I tried the direct way, i.e.:

<tr style="border-bottom:1pt solid black;">

But that didn't work. So I added CSS like this:

tr {

border-bottom: 1pt solid black;

}

Answered by patilanagha
1

Answer:

To change the border's color, use the attribute bordercolor="color" where color is the same format as all the other web colors we've been using. The table below has the bordercolor set to #ff00ff with the table tag <table bordercolor="#ff00ff">. To change the background color, use the attribute bgcolor="color".

Explanation:

i hope it's will help you

Similar questions