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.
Iamはここで新しく、コーディングも新しくなっています。背景のアタッチメントを非常に特定の位置に配置したいのですが、上、左上、右上などではうまくいきません。たとえば、最も正確な位置が必要です。アタッチメントの左上隅を100,200に配置します
あなたがそれをやりたいのならCSS、これに行きなさい
CSS
div { background-image:url('your-img-url'); background-repeat:no-repeat; background-position:100px 200px; background-attachment:fixed; }