| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| "http://www.w3.org/TR/html4/loose.dtd"> |
| |
| <html lang="en"> |
| <head> |
| <style type="text/css" media="screen"> |
| #split { |
| width: 200px; |
| font-size: 24pt; |
| } |
| |
| #split > span { |
| border: 2px solid green; |
| line-height: 1.7em; |
| -webkit-border-radius: 14px; |
| -webkit-box-shadow: black 3px 3px 5px; |
| } |
| </style> |
| </head> |
| <body> |
| <p>Tests border-radius and box-shadow on a split inline.</p> |
| <div id="split"> |
| <span>I am a span which is split over three lines</span> |
| </div> |
| </body> |
| </html> |