Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6569385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:37:13+00:00 2026-05-25T14:37:13+00:00

So I got a table and I want to set a style in all

  • 0

So I got a table and I want to set a style in all <tr> elements but the first. Example:

<table>
    <tr><th>This receives header styles</th></tr>
    <tr><td>This receives item styles</td></tr>
    <tr><td>This receives item styles</td></tr>
    <tr><td>This receives item styles</td></tr>
</table>

I know I have to use selectors but I don’t know how and can’t find it on the web =S

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T14:37:14+00:00Added an answer on May 25, 2026 at 2:37 pm

    The general sibling selector ~ lets you select every certain element that comes after another. You can use this selector:

    table tr:first-child ~ tr
    

    Works in IE7+.

    If you can modify your HTML to make it more semantic, you can place your first row with the th cells in a thead, and the rest in a tbody:

    <table>
      <thead>
        <tr><th>This receives header styles</th></tr>
      </thead>
      <tbody>
        <tr><td>This receives item styles</td></tr>
        <tr><td>This receives item styles</td></tr>
        <tr><td>This receives item styles</td></tr>
      </tbody>
    </table>
    

    Then use this selector instead:

    table tbody tr
    

    Works on older browsers in case you need it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got a table in my HTML and I want to generate new temporary
I've got a table that stores the following: JobID ValidationItemID CreatedBy I want to
Let's say you've got a table with a timestamp column, and you want to
I've got a SQL Server table with about 50,000 rows in it. I want
Got datatable with Id, parentId, description. It is a relationial table structure. I want
I've got a problem with my page's layout. I want to create 3 table
I've got table with two columns: name and grade. It looks sth like this:
Got this: Table a ID RelatedBs 1 NULL 2 NULL Table b AID ID
I've got a table that caches calculated values for certain dates. I want to
I got this trigger, I want to evaluate the mobile phone and insert into

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.