Please expain <div "class" > and class "selected" | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Please expain <div "class" > and class "selected"

12th Aug 2017, 5:14 AM
Ronit
2 Answers
+ 1
The class is define to style some elements in your page, then you can style all the elements with the same class by using selector in css: .myclass {color:blue;}
12th Aug 2017, 7:01 AM
Αητοιπe
Αητοιπe - avatar
+ 1
The class is used so you can define a certain object or element in your code with CSS. For example, if you wrote in HTML: <div class="hi"> In CSS to style it, you would do something like this: .hi{ font-family:"Sans Serif",cursive; font-size:22px; } This code now has a class called "hi" that is in Sans Serif font and has writing that is 22px large.
12th Aug 2017, 7:30 AM
Learnsolo