Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create table cssClass(
style as varchar(20),
class as varchar(20),
precedence as int
)
insert into css values('DEFAULT','a',1)
insert into css values('DEFAULT','a:active',2)
insert into css values('DEFAULT','a:hover',2)
create table cssProp(
style as varchar(20),
class as varchar(20),
property as varchar(50),
value as varchar(50)
)
insert into css values('DEFAULT','a' ,"color" ,"#660033")
insert into css values('DEFAULT','a' ,"text-decoration","none")
insert into css values('DEFAULT','a:active',"text-decoration","underline")
insert into css values('DEFAULT','a:hover' ,"text-decoration","underline")
response.contentheader = "text/css"