Answers for "how to change width and height of span in html"

CSS
1

can span have width

/* An html span element does not have width or height,
because it is an inline element */
span{
  width: 10px; /* Does not work. Apparent width is still 0. */
}
Posted by: Guest on July-18-2020
-1

span size css

span.product__specfield_8_arrow
{
    display: inline-block; /* or block */
}
Posted by: Guest on June-02-2020

Code answers related to "how to change width and height of span in html"

Browse Popular Code Answers by Language