HTML <base> href属性

❮HTML<base>タグ

ページ上のすべての相対URLのベースURLを指定します。

<head>
  <base href="https://www.w3schools.com/images/">
</head>

定義と使用法

このhref属性は、ページ上のすべての相対URLのベースURLを指定します。


ブラウザのサポート

Attribute
href Yes Yes Yes Yes Yes

構文

<base href="URL">

属性値

Value Description
URL An absolute URL that acts as the base URL (like "http://www.example.com/")

❮HTML<base>タグ