0
How do we select using css
7 ответов
0
by using selector element
0
using value
0
if youre referencing the p tag, use
p {
/*CSS here*/
}
But it you want to reference something by id, for instance all a tags with the id of "blue", then use:
a.blue {
color:blue
}
There are lots more, but thats the simplest types
Hope this helps :D
0
i dont understand what you mean by selector element using value
0
tank
0
wut