url()フィールドのCSS attr()セレクタを静的テキストと連結するにはどうすればよいですか?CSS attr()URLパスとの連結
HTML私が使用します。たとえば
<div image='/Require/static.png'></div> //Example 2
<div image='static.png'></div> //Example 3, 4, 5
:
は//image attribute contains the image name (and prefix location when needed, see example 2)
div[image]:before {
background-image: url('/Image/static.png'); //Works
background-image: url(attr(image)); // Works
background-image: url('/Image/' attr(image)); //Fails
background-image: url('/Image/' #attr(image)); //Fails
background-image: url('/Image/' {attr(image)); //Fails
}
だから - それが可能であれば - どのように私はこれを達成することができますか?
イメージタグでもHTMLを投稿できますか。 –
CSSは自明であり、理解するためにHTMLを必要としません。 – BoltClock
更新されました投稿をご覧ください –