Bonjour a tous

j'ai un petit soucis avec une balise meta

voila je veux faire des dégradés en css alors je suis obligé de mettre une balise meta de compatibilité équivalence IE

mais voila maintenant la partie du code application hta n'est plus pris en compte

en effet au dépars j'enlève la captions de la fenêtre et je maximise
mais avec cette balise la fenêtre est normale avec la captions

quelqu'un pourrait m'aider a régler ce problème

voila un code en exemple

quand on enlève la balise meta l'application est bien maximisée mais le rectangle en dégradé a disparu

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
<html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>">
<head>
<meta http-equiv="x-ua-compatible" content="IE=edge" />
<HTA:APPLICATION ID="TELEVISION"
   applicationName="TELEVISION"
   version="1.1"
    BORDER="thick"
    BORDERSTYLE="raised"
    CAPTION="NO"
    CONTEXTMENU="YES"
    ICON="Sandro.ico"
    INNERBORDER="NO"
    MAXIMIZEBUTTON="YES"
    MINIMIZEBUTTON="YES"
    NAVIGATABLE="YES"
    SCROLL="NO"
    SCROLLFLAT="no"
    SELECTION="YES"
    SHOWINTASKBAR="yes"
    SINGLEINSTANCE="yes"
    SYSMENU="yes"
    WINDOWSTATE="MAXIMIZE" 
/>
<TITLE>TELEVISION</TITLE>
<title>Tutoriel</title>
<style type="text/css">
body
{
background-color:black;
 margin:0;
 font-family:Georgia, "Times New Roman", Times, serif;
}
 
#btn
{
 
width:300px;height:150px;
 
background-image: -ms-linear-gradient(right, rgb(138, 181, 20) 0%, rgb(217, 50, 50) 100%);
}
</style>
</head>
<body>
<DIV id="btn"></div>
</body>
</html>