Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のサイトには 2 つのテーブルがあり、それらの名前は次のとおりです。
<table class="table1"> <table class="table2">
を参照しようとしていますがtable1、td次trをth使用しています:
table1
td
tr
th
table.table1 td, tr, th { border: 1px solid red; }
しかし、それは両方のテーブルに適用され、スタイリングをtable2. 何が悪かったのか?
table2
各セレクターの間のコンマは、新しいセレクターを意味します。したがって、trandthセレクターは だけでなく、すべてのテーブルに共通table1です。table1したがって、それらのセレクターごとに指定する必要があります。
table.table1 td, table.table1 tr, table.table1 th {