html css table-color

BackEnd_Ash.log·2020년 6월 30일
0

bootstrap install

https://react-bootstrap.github.io/getting-started/introduction

nomal table color

      <table className="table-bordered">
          <tr className="tr_border">
          <th className="th_border">th_test</th>
          <td className="td_border">td_test</td>

A light gray table will appear.

so you may be will think change

how to change table color ??

.table-bordered tr

.table-bordered tr {
    border: 1px solid blue;
}
.table-bordered tr td {
    border: 1px solid blue;
}

:)

profile
꾸준함이란 ... ?

0개의 댓글