In what ways can the value for color be specified in html
Answers
Answered by
0
there are two ways-
1) Directly specify the color,eg.-
<style>
table,td,tr {
color=purple
}
</style>
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2) Use RGB (red,green, blue)
<style>
table,td,tr {
color: RGB="200,0,200"
}
</style>
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(*the second example will give the colour purple)
1) Directly specify the color,eg.-
<style>
table,td,tr {
color=purple
}
</style>
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2) Use RGB (red,green, blue)
<style>
table,td,tr {
color: RGB="200,0,200"
}
</style>
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(*the second example will give the colour purple)
Similar questions