Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to change paragraph text color to orange - css

p{
  color: orange;
}
Comment

how to change paragraph text color to orange - css

.class{
  color: #FFA500;
}

/*In the Html sheet, your paragraph should have the class 'class', or what ever
you want to call it(you can change 'class' to what you want). Just make sure 
the name is exactly the sameas what you type in css.*/

/*The same can be done by adding 'orange' instead of the hex - #FFA500.*/

/*This is how the html would look
<p class = "class">Orange</p>*/
Comment

how to change paragraph text color to orange - css

p{
  color: #FFA500;
}
Comment

PREVIOUS NEXT
Code Example
Css :: how to scale down background image in css 
Css :: coustomize srollbar 
Css :: css content from data attribute 
Css :: css cut text of 
Css :: fade other items on hover 
Css :: css transition slide up 
Css :: padding right 
Css :: 3d button 
Css :: background shorthand css 
Css :: not hover css 
Css :: when hover target diffrent element 
Css :: css not last child 
Css :: css hollow circle 
Css :: scroll x css 
Css :: adding border to text css 
Css :: increase font size zenity 
Css :: i used overflow-y : scroll but the scroll bar keep on showing 
Css :: media query for mobile landscape only 
Css :: text decoration underline not removing 
Css :: why do we need hexadecimal number system 
Css :: css wrap text next line align right 
Css :: background repeat 
Css :: font gap css 
Css :: z index div over cursor 
Css :: css percent scale checkbox 
Css :: css change link color in class 
Css :: li not first child 
Css :: scss linear gradient not working 
Css :: scrollbar-color 
Css :: jquery hide scrollbar but allow scrolling 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =