<body>
This is text1
<div> This is text2</div>
</body>
I'm looking to style the text1 only.
I attempted to use
body{
color:red;
}
but both text1 and text2 ended up turning red.
What I really need is something like this.
[desired_css_selector]
{
color:red;
}
Thank you!