Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<image x="20" y="20" width="300" height="80" xlink:href="logo.png" />
ピクセルを使用して画像を配置する方法はありますか? CSSスプライトが好きですか?
position:absolute を使用して配置できます
例えば
img { position:absolute; top:20px; left:20px; }
position:relative が設定されているコンテナの親コンテナに対して相対的に配置されます。
それが役立つことを願っています。