Footer Border

Hi, I am trying to put a border-top on my footer
but it is not showing. [Website][1]

.footer {
  background-color: #226BFC;
  display:table-row ;
  height:1px;
  border-top: 3px solid #F45140;

}

I noticed it is the display:table-row; is what is
why its not letting it show for some reason…
[1]: http://impactograph.com/test/index.html

Hi, csosa.

A table-row will not accept a border style. (A table-row will not accept many styles at all.)

You can put a table-cell inside the table-row and assign a border to the table-cell along with the height and background-color.

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.