Answers for "gray text css"

CSS
2

css text black outline

/* Written for h4 tag, modify as required */
.black-outline{
    -webkit-text-stroke: 1.11px black; /* stroke width and color */
    color: rgb(255, 255, 255);
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
}
Posted by: Guest on July-17-2020
1

css light grey

#selector{
    color:lightgrey;
}
Posted by: Guest on April-08-2020
9

css change text color

p{
	color: White;
}
Posted by: Guest on May-14-2020

Browse Popular Code Answers by Language