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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

checkbox size 1

Status
Not open for further replies.

RobBroekhuis

Technical User
Oct 15, 2001
1,971
US
Hi,
Text on my input forms is in a somewhat larger, friendlier font than default. My form also includes a checkbox. Next to the oversized text inputs, this checkbox looks really tiny. I couldn't find size attributes for a checkbox in the online HTML reference - is there a way to get a bigger one?


Rob
[flowerface]
 
well css will work

input.check {
height: 50px;
width: 50px;
}

<input type=&quot;checkbox&quot; name=&quot;checkbox&quot; value=&quot;checkbox&quot; class=&quot;check&quot;>

OOOO---AHHHH

thats one damn big check box though

Listen All I ask is that You close out a Post You Started!!!!
 
Thanks deecee,
That worked, even though the rendering is iffy (at least on IE). Time for me to really learn (rather than just dabble with) css...


Rob
[flowerface]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top