Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Styling Div Inside Div Reply To: Styling Div Inside Div

#267669
Xiija
Participant

Without an ID, you could do this in the css…?
div
{ background-color: khaki;
border:1px solid #222;
}
div:nth-child(1):hover
{ transform: translate(15px,15px) rotate(25deg) scale(1,1) skew(15deg,15deg);
color: blue;
}
div:nth-child(2):hover
{ font-size: 50px;
transition: font-size 3s;
}