CSS3 support for HTA

Are HTML5 and CSS3 supported using HTA? If I plan to use my application only on the Windows operating system: this is a simple application that does some basic file processing, is HTA a viable option?

Will there be serious performance issues if I use a simple flat file (text file) to store my HTA data?

+6
source share
2 answers

HTAs not only supports all web pages, namely HTML, cascading style sheets (CSS), scripting languages ​​and behavior, but also HTA functionality. This added functionality provides control over the user interface design and access to the client system.

http://msdn.microsoft.com/en-us/library/ms536496(v=vs.85).aspx

+4
source

To summarize, you should include such a meta line in your HTA so that it supports CSS3:

<meta http-equiv="x-ua-compatible" content="ie=9"> 
+3
source

Source: https://habr.com/ru/post/902064/


All Articles