Style sets in H-SMILE core.

HTMLayout and Sciter are both use H-SMILE core to render HTML/CSS. And so both of them support so called style sets. In this article I’ll try to explain what style set is about and why I decided to introduce them. First of all: Style set is a named block of style rules – definition of…

Cheap CSS implementations?

CSS3 defines [att=val] selectors . And they work in all modern browsers in static form. But when you will try to use such a selector with attributes changed from script you will get problems. Following works as expected in FF but does not work in Google Chrome and Opera: <html> <head> <style> div { display:none;…