-
css question
When putting text to the screen with out using a tag.
example:
PHP Code:
<html>
<body>
hi
</body>
</html>
Is it possible that that text can be defined using css... as far as I know, all u can do is define tags to act a certain way. But can it be made so the above text "hi" can arial with a size 100 point font? without including it within a tag?
thanx
-
yes...you simply define the body text to be 100pt arial
<style type="text/css">
<!--
body {font-size: 100pt; font-family: arial; }
-->
</style>
That would tell every piece of text on that page to be arial at 100pt. The above chunk of code would go inside your HEAD tag.