【CSS】background-image - 背景画像

【CSS】background-image - 背景画像

CSSのbackground-imageプロパティについて解説します。

検証環境

background-image

background-imageは“背景画像”のプロパティです。

基本構文

background-image: 値;

サンプル

<style>
p {
    color: yellow;
    ___ih_hl_start
    background-image: url('https://it-hack.net/storage/app/media/document/development/programming/css/properties/background-image/hacker-commandline.jpeg');
    ___ih_hl_end
}
</style>

<p>
    CSS : Cascading Style Sheets.<br>
    CSS is a programming language that decorates elements such as HTML and XML.<br>
    You can set various properties such as text color, background, and size.
</p>