Border around specific rows in a table?

后端 未结 10 1570
轮回少年
轮回少年 2020-12-02 08:10

I\'m trying to design some HTML/CSS that can put a border around specific rows in a table. Yes, I know I\'m not really supposed to use tables for layout but I don\'t know en

10条回答
  •  眼角桃花
    2020-12-02 08:37

    Group rows together using the tag and then apply style.

    No Style here
    Style me
    And me
    No Style here

    And the css in style.css

    .red-outline {
      outline: 1px solid red;
    }
    

提交回复
热议问题