ホームページ >ウェブフロントエンド >htmlチュートリアル >css27] href 属性を持つベースタグは、chrome_html/css_WEB-ITnose の svg 要素 URL を無効にします。
Chromeの問題ですが、具体的な原因は不明です。
トリガー条件: Chromeブラウザのベースタグのhref属性に値がある場合
トリガー問題: SVG内の要素がURLによってフィルタリングされ、ぼかされている場合、無効になります。この問題は Firefox と IE10 では見つかりません。
通常の状態:
基本タグがあり、href の値が "." の場合の Chrome の状態:
テストコード:
<!doctype html><html><head><meta charset="utf-8"><title>chrome bug</title><style>#svg{ width:500px; height:500px; display:block; margin:20px auto; background-color:#000; }</style><!--当href=""里面有值的时候填写的url都会失效--><base href="." target="_blank"><!--当href=""这样则不会--><!--<base target="_blank">--></head><body><svg id="svg"> <defs> <lineargradient id="blur1" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" style="stop-color:#FF0000;stop-opacity:0"></stop> <stop offset="100%" style="stop-color:#FF0000;stop-opacity:1"></stop> </lineargradient> <filter id="Gaussian_Blur"> <feGaussianBlur in="SourceGraphic" stdDeviation="3" /> </filter> </defs> <circle cx="200" cy="50" r="40" style="stroke:url(#blur1); filter:url(#Gaussian_Blur); stroke-width:10; fill:yellow; "/> <line x1="0" y1="0" x2="300" y2="300" style="stroke:url(#blur1); stroke-width:2;" /></svg></body></html>
具体的な理由は不明ですが、誰かが私を教えてくれることを願っています。