Answers for "w3cschools outline"

CSS
1

how to apply outline to text in html css

#example3{
	color: black;
	font-size: 34px;
	-webkit-text-stroke: 1px black;
	-webkit-text-fill-color: white;
}
Posted by: Guest on December-02-2020
0

outline css

h2 {
  outline: 5px dotted green;
}

div.a {
  outline: 2px dashed blue;
}
Posted by: Guest on July-02-2021

Browse Popular Code Answers by Language