When mouse hover element 1 can i change css of element 2.
Here is an example:
<h1 id="text1">Text1</h1>
<h1 id="text2">Text2</h1>
#text1
{
color:Green;
}
#text1:hover -> #text2 What i must write here??
{
color:Red;
}
#text2
{
color:Gray;
}