>>> Is it possible to use a background image as a search box? If so, will
>>> the search box outline still be there or can the image be the actual
>>> box?
>>
>> --CSS--
>> .searchbox{
>> background-image:url
>> (the_image_worthy_of_sacrificing_accessibility.jpg);
>> width:125px;
>> height:30px;
>> padding:2px 10px;
>> border-width:0px;
>> }
>>
>> --HTML--
>> <INPUT type="text" class="searchbox" ... >
>
> How is it sacrificing accessibility?You have to think about the variety of users that might visit the page. A user with images turned off would get an invisible input box. Users that are new to the internet might not understand that your custom image is an input box; they might expect to see their regular OS chrome input box. Et cetera... So while it can be done. It it also incumbent upon you to ask if it should be done. ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
