MST
星途 面试题库

面试题:CSS背景属性综合应用

假设你有一个div元素,宽300px,高200px。要求设置背景颜色为淡蓝色(#87CEEB),同时在背景上显示一张图片(假设图片路径为'img.jpg'),并将图片定位在右下角。请写出完整的CSS代码。
14.0万 热度难度
前端开发CSS

知识考点

AI 面试

面试题答案

一键面试
div {
  width: 300px;
  height: 200px;
  background-color: #87CEEB;
  background-image: url('img.jpg');
  background-position: bottom right;
  background-repeat: no-repeat;
}