[Webkit-unassigned] [Bug 8504] New: CSS Attributes and Display of SELECT tags

bugzilla-daemon at opendarwin.org bugzilla-daemon at opendarwin.org
Thu Apr 20 16:41:11 PDT 2006


http://bugzilla.opendarwin.org/show_bug.cgi?id=8504

           Summary: CSS Attributes and Display of SELECT tags
           Product: WebKit
           Version: 420+ (nightly)
          Platform: Macintosh
        OS/Version: Mac OS X 10.4
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at opendarwin.org
        ReportedBy: mike at azeggnet.com


In Firefox, and the other major browsers out in the Web, you can control the
way that a SELECT box is drawn with CSS.  I will be showing a very simple
SELECT field that has a style attached to it.  One with the style tag in it,
and one defined by a class.

Both of these are rendered correctly in Firefox, allowing for greater
flexibility and design:

<html>

        <head>
                <meta http-equiv="content-type"
content="text/html;charset=iso-8859-1">
                <title>Untitled Page</title>
                <style type="text/css" media="screen"><!--
select.test {
        color: navy;
        font-size: 12px;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-weight: bold;
        background-color: lime; }

--></style>
        </head>

        <body>
                <p><select name="selectName" class="test" size="1">
                                <option value="one">first</option>
                                <option value="two">second</option>
                                <option value="three">third</option>
                        </select></p>
                <p><select name="selectName" style="color: navy; font-size:
14px; font-family: Verdana, Arial, Helvetica, sans-serif; background-color:
#ebf319;" size="1">
                                <option value="one">first</option>
                                <option value="two">second</option>
                                <option value="three">third</option>
                        </select></p>
        </body>

</html>


-- 
Configure bugmail: http://bugzilla.opendarwin.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list