Answers for "html stroke"

CSS
0

css stroke

.TEXT:hover{
  -webkit-text-stroke-width: 1px; /* 1px Stroke */
  -webkit-text-stroke-color: #ffffff; /* White Color */
  transition: 1s /* Displays in 1 Second */
}
Posted by: Guest on February-06-2021
3

svg stroke color

<rect x="10" y="10" width="100" height="100" stroke="blue" fill="purple"
       fill-opacity="0.5" stroke-opacity="0.8"/>
Posted by: Guest on March-18-2020
0

css stroke

.module {
  stroke: black;
}
Posted by: Guest on May-18-2020

Browse Popular Code Answers by Language