Click to See Complete Forum and Search --> : CSS for mobile devices


digital_storm
03-31-2004, 07:58 AM
Hello!

Is it possible to use CSS to present the information on a mobile device (handhel computer or mobile phone) or do they use another "language" ?

toicontien
03-31-2004, 08:36 AM
You can. Just include the following line of HTML:

<link rel="stylesheet" type="text/css" media="handheld" href="css/handheld/default.css" />

Right now you need to keep the CSS simple. Further, I don't know of any handheld devices that comply enough to these standards to actually implement them (though I have at http://mjw.cmich.edu/ ).

For right now, use Wireless Markup Language (WML). Go to W3Schools (http://www.w3schools.com/) to learn more.

digital_storm
03-31-2004, 10:11 AM
Thanks!