Code: Select all
.texta {
background:#999999;
color:white;
font-family:verdana;
font-size:7pt
}B.) How can I make it so the textarea dont have a scroll option?
kudos.
Moderator: General Moderators
Code: Select all
.texta {
background:#999999;
color:white;
font-family:verdana;
font-size:7pt
}Code: Select all
<form action=clear.php METHOD=GET><textarea name=comment class=texta cols=5 rows=2></textarea><BR><br><input type=submit class=logbutton value=Reset>
?>Code: Select all
<html>
<head>
<title></title>
<style type="text/css" media="screen">
#container {
text-align: center;
}
.texta {
background:#999999;
color:white;
font-family: arial, helvetica, sans-serif;/* Verdana font is specific and will mess up in other operating systems besides windows, try using a generic font for interoperability */
font-size:11px; /* use px instead pt*/
text-align: center;
}
</style>
</head>
<body>
<div id="container">
<form action="clear.php" method="get">
<textarea name="comment" class="texta" cols="50" rows="20"></textarea><br><br>
<input type="submit" class="logbutton" value="Reset">
</form>
</div>
</body>
</html>Code: Select all
<?php
<input type="text" name="uname" maxlength="20" class="b0x" size="21" value="number here">
?>Why'd you want a textarea?tim wrote:dont ask me why I wanted a textarea
Code: Select all
body {
font-size: 10px;
}Code: Select all
#menua {
font-size: 120%;
}