vbscript を使用して CSS スタイルを変更することは可能ですか? 次のコードは、 Windows スクリプティング ホストでは機能しません。
Dim oIE
Set oIE = CreateObject("InternetExplorer.Application")
oIE.navigate("www.website.com")
Do While oIE.Busy
WScript.Sleep 100
Loop
oIE.document.getElementById("div-id-here").style.backgroundcolor="#ff0000"