Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

changinh font-size, style for INPUT Text Type

Status
Not open for further replies.

fixthebug2003

Programmer
Oct 20, 2003
294
US
Hi,
Is it possible to change Font-Size, Font-styles for a <INPUT type="text"></INPUT> HTML tag?

Fixthebug2003
 
Try this:
Code:
<html>
<head>
<title>Untitled</title>

<style type="text/css">
<!--
[blue]input.big{
	font-size: 20px;
}[/blue]
-->
</style>

</head>
<body>
<input type="text" name="textbox" [blue]class="big"[/blue] value="test" />
</body>
</html>

Hope that helps.

Ron

“If you are irritated by every rub, how will you be polished?”
~ Mevlana Rumi


murof siht edisni kcuts m'I - PLEH
 
<INPUT type="text"></INPUT style = "font size = 20px">

Something like this, you just have to adjust the font size to what you want.

Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top