1. ホーム
  2. Web制作
  3. CSS

[css3】background属性の8つの属性値について解説(インタビュー記事)

2022-02-03 13:02:49

CSSにおけるbackgroundのプロパティ値

  • 背景色
  • 背景画像
  • バックグラウンドリピート
  • 背景位置
  • 背景アタッチメント

合成属性:background:background-color background-image background -repeat background-position background-attachment
CSS3 new:composite属性でbackgroundを使用できないもの
背景サイズ、背景オリジン、背景クリップ

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
*{
margin: 0;
padding: 0;
}
.pic{
width: 300px;
height:400px;
border: 20px dashed aqua;
padding: 30px;
/* background-color:#f90;
background-image:url(https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1603882574342&di=e
fe3283a838eef10140bcab16bf06371&imgtype=0&src=http%3A%2F%2Fdpic.tikong.com%2F8i%2Fzu%2FQJ6411171137.jpg);
background-repeat: no-repeat;
background-position: 50% 50%;
background-attachment: fixed; */
background:#f90 url(https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1603882574342&di=e
fe3283a838eef10140bcab16bf06371&imgtype=0&src=http%3A%2F%2Fdpic.tikong.com%2F8i%2Fzu%2FQJ6411171137.jpg)
no-repeat 50% 50% fixed;
background-size: 100px 100px;
background-origin: border-box;
background-clip: content-box;
}
</style>
</head>
<body>
<div class="pic"></div>
</body>
</html>

今回の記事は、background属性の8つの属性(面接の質問)についての記事です。background属性については、スクリプトハウスの過去記事を検索していただくか、引き続き下記の関連記事を閲覧してください。