CSS

CSS – Links Strong line

http://www.aptana.com/reference/html/api/CSS.element.Strong.html

Mudando o style:

height:35px;background-color:#80b035;color:#ffffff;background-image: url(../../images/commonDisplayTag/commonDisplaytagTrBg.png);background-repeat: no-repeat;}

style=”color:#FFFFFF;font-size:small;align:center;” >

Setando o background da linha <tr> para azul:

<tr class=”head” style=”background:#000080;”>

<td class=”labelColumn” colspan=”4″>Entre com os dados para pesquisa.</td>

</tr>

Cores em hexadecimal:

http://www.colorcombos.com/combolibrary.html?color0=F2F5ED&color1=FFC200&color2=FF5B00&color3=B80028&color4=84002E&color5=4AC0F2

ou

http://web.njit.edu/~kevin/rgb.txt.html

td {
	border-bottom: navy solid thin;
	border-top: navy solid thin;
	border-left: none;
	border-right: none;
	font-size: smaller;
}
<html>
<head>
<style type=”text/css”>
h1 {font-size:250%;}
h2 {font-size:200%;}
p {font-size:100%;}
</style>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<p>This is a paragraph.</p>
</body>
</html>

This is heading 1

This is heading 2

This is a paragraph.

Mais:

http://www.w3schools.com/Css/pr_font_font-size.asp

http://www.w3schools.com/Css/pr_font_font-size.asp

No comments yet.