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.
次のようなものに具体性を追加するにはどうすればよいですか。
input[type="text"] { color:red }
私は次のようなものが欲しい:
#my_id input[type="text"] { color:red }
こんな感じですか?
input[type="text"]#my_id { color:red }
デモを見る
ID を使用し、子ノードをアドレス指定したくない場合は、他の部分を省略できます。ID は一意である必要があるため、次のように使用できます。
#my_id { color:red }