0
How do I mix font-family, font-size, font-color, font-weight properties to affect the appearance of a paragraph - all at once .
Urgent please.
4 odpowiedzi
+ 2
if you go back to the vertical align section you can get a basis off from there.
<head>
<style type="text/css">
.style{
font-family:"Times New Roman;
font-size:130%;
color:red;
}
</style>
</head>
<body>
<p class="style">
*final edit*
+ 2
p{
font-family:monospace;
font-size:130%;
color:red;
font-weight:bold;
}
0
CSS Property Shorthand:
p {
font: 16px/18px bold italic san-serif;
/* size/line height, weight, style, family */
}
0
Thanks to all for your response to my question. It was only after I learned CSS, that I found it easy doing the process above. Otherwise your answers are right. Thanks once more...