Hi,
ich würde mich gerne etwas mit VML beschäftigen, allerdings scheitere ich schon beim einbinden eben solcher.
Solange ich keinen Doctype angebe wird es angezeigt (also im Quirksmode), mit Doctype wird gar nichts angezeigt:
<!doctype html>
<html><head><title></title></head>
<body>
<style type="text/css">
[code lang=css]v\:* {behavior:url(#default#VML)}
</style>
<script type="text/javascript">
~~~javascript
if (!document.namespaces['v']) {
document.namespaces.add('v', 'urn:schemas-microsoft-com:vml', '#default#VML');
}
</script>
<v:oval style="height:75pt;width:100pt" coordsize="21600,21600" fillcolor="red" />
</body>
</html>[/code]
Ich habe leider keine Ahnung an was das liegen könnte, weis jemand Rat?
~dave