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.
画像のコーナーを削除するか、透明にしようとしているので、そのコーナーの背後にある背景が見えるはずです。JqueryまたはCSSでこれを行う方法はありますか?
次を設定できますborder-radius。
border-radius
$("#IDofImage").css("border-radius", "10px");
もちろん、ページ読み込みから常に CSS を設定したい場合は、純粋な CSS を使用します。
#IDofImage { border-radius: 10px; }