HTML Element Style How to - Outline a long span tag








Question

We would like to know how to outline a long span tag.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
p {<!--  w w w.ja  v  a  2  s .c o  m-->
  width: 220px;
}

span {
  outline: 2px red solid;
}
</style>
</head>
<body>
  <p>
    We <span>test test test test test test test test test test test, not</span> just
    discussed.
  </p>
</body>
</html>

The code above is rendered as follows: