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.
div > a{ }
プロパティを<a>子に適用します。しかし、だけでなく、どのような種類の要素を選択するにはどうすればよい<a>でしょうか?
<a>
これにより、すべての DIV の直接の子オブジェクトがすべて選択されます。
div > * { }
以下を使用します。
div > * { Your css attributes should be here }
お役に立てれば。
以下を使用してください...
div > * {}