Text layout - Underline

Text layout - Underline

In some cases want to underline styles to text, so you can visually emphasize text, you can use the following code to implement:

Decoration {text-PA: underline;} 

< P > third grade, a I < A > timid </ A > girl. </ P >

Example:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>下划线样式</title>
<style type="text/css">
a {text-decoration:underline;}
span {
    text-decoration:underline;
}
</style>
</head>

< Body > 
< the p- > < span > third grade </ span > When I was a < A > timid </ A > little girl. </ P >  
</ body > 
</ HTML >

 

Guess you like

Origin www.cnblogs.com/iBoundary/p/11432595.html