CSS3 support for HTA

前端 未结 2 848
我在风中等你
我在风中等你 2020-12-31 18:11

Is HTML5 and CSS3 supported by HTA? If I am planning to use my application only with Windows operating system: It is a simple application that does some basic file handling,

相关标签:
2条回答
  • 2020-12-31 18:39

    To summarize, you have to include such kind of meta line in your HTA to make it support CSS3:

    <meta http-equiv="x-ua-compatible" content="ie=9">
    
    0 讨论(0)
  • 2020-12-31 18:42

    HTAs not only support everything a webpage does—namely HTML, Cascading Style Sheets (CSS), scripting languages, and behaviors—but also HTA–specific functionality. This added functionality provides control over user interface design and access to the client system.

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

    0 讨论(0)
提交回复
热议问题