Mengatur Posisi Caption HTML Menggunakan captionSide Style DOM
- untuk mendapatkan nilai properti captionSide: object.style.captionSide
- untuk mengatur nilai properti captionSide: object.style.captionSide = "bottom|top|initial|inherit"
Return Values: berfungsi untuk mengembalikan sebuah nilai string, yang merepresentasikan posisi dari caption tabel.
Property Values:
- bottom: digunakan untuk posisi caption bagian bawah.
- top: digunakan untuk posisi caption bagian atas, dan merupakan nilai default dari properti captionSide.
- initial: digunakan untuk mengatur nilai properti ke nilai default-nya.
- inherit: digunakan untuk menerima nilai turunan properti yang berasal dari parent.
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style captionSide DOM
</title>
<style>
th,td
{
border: 2px solid black;
padding: 10px;
margin: 10px;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style captionSide DOM
</b>
<table>
<caption
id="caption1">
Daftar Buku-buku
</caption>
<tr>
<th>Book</th>
<th>Author</th>
<th>Price</th>
</tr>
<tr>
<td>Bahasa Java</td>
<td>Luffy, Sanji</td>
<td>501</td>
</tr>
<tr>
<td>Pengenalan Algoritma</td>
<td>Buggy</td>
<td>1001</td>
</tr>
</table>
<button
onclick="setCaptionSide()"
style="margin-top: 10px">
Set captionSide
</button>
<!-- Script untuk mengatur
captionSide ke bottom -->
<script>
function setCaptionSide()
{
elem = document.querySelector('#caption1');
elem.style.captionSide = 'bottom';
}
</script>
</body>
</html>
Output:Blog Elfan
Properti Style captionSide DOMBook | Author | Price |
---|---|---|
Bahasa Java | Luffy, Sanji | 501 |
Pengenalan Algoritma | Buggy | 1001 |
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style captionSide DOM
</title>
<style>
th,td
{
border: 2px solid black;
padding: 10px;
margin: 10px;
}
#caption2
{
caption-side: bottom;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style captionSide DOM
</b>
<table>
<caption
id="caption2">
Daftar buku-buku
</caption>
<tr>
<th>Book</th>
<th>Author</th>
<th>Price</th>
</tr>
<tr>
<td>Berkuli</td>
<td>Bill Jim, Loina</td>
<td>502</td>
</tr>
<tr>
<td>Perkenalan kuli</td>
<td>CLRT</td>
<td>1002</td>
</tr>
</table>
<button
onclick="setCaptionSide()"
style="margin-top: 10px">
Set captionSide
</button>
<!-- Script untuk mengatur
captionSide ke top -->
<script>
function setCaptionSide()
{
elem = document.querySelector('#caption2');
elem.style.captionSide = 'top';
}
</script>
</body>
</html>
Blog Elfan
Properti Style captionSide DOMBook | Author | Price |
---|---|---|
Berkuli | Bill Jim, Loina | 502 |
Perkenalan kuli | CLRT | 1002 |
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style captionSide DOM
</title>
<style>
th,td
{
border: 2px solid black;
padding: 10px;
margin: 10px;
}
#caption3
{
caption-side: bottom;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style captionSide DOM
</b>
<table>
<caption
id="caption3">
Daftar Buku
</caption>
<tr>
<th>Book</th>
<th>Author</th>
<th>Price</th>
</tr>
<tr>
<td>Kuli Java</td>
<td>Junaidi, Juleha</td>
<td>503</td>
</tr>
<tr>
<td>Perkenanan Kebun Kopi</td>
<td>CLRE</td>
<td>1003</td>
</tr>
</table>
<button
onclick="setCaptionSide()"
style="margin-top: 10px">
Set captionSide
</button>
<!-- Script untuk mengatur
captionSide ke initial -->
<script>
function setCaptionSide()
{
elem = document.querySelector('#caption3');
elem.style.captionSide = 'initial';
}
</script>
</body>
</html>
Blog Elfan
Properti Style captionSide DOMBook | Author | Price |
---|---|---|
Kuli Java | Junaidi, Juleha | 503 |
Perkenanan Kebun Kopi | CLRE | 1003 |
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style captionSide DOM
</title>
<style>
th,td
{
border: 2px solid black;
padding: 10px;
margin: 10px;
}
#parent
{
caption-side: bottom;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style captionSide DOM
</b>
<div
id="parent">
<table>
<caption
id="caption1"
style="caption-side: top">
Daftar Buku
</caption>
<tr>
<th>Book</th>
<th>Author</th>
<th>Price</th>
</tr>
<tr>
<td>Adu kambing</td>
<td>Sumira, Darmini</td>
<td>504</td>
</tr>
<tr>
<td>Pengenalatan Judi Slot</td>
<td>CLRY</td>
<td>1004</td>
</tr>
</table>
</div>
<button
onclick="setCaptionSide()"
style="margin-top: 10px">
Set captionSide
</button>
<!-- Script untuk mengatur
captionSide ke inherit -->
<script>
function setCaptionSide()
{
elem = document.querySelector('#caption1');
elem.style.captionSide = 'inherit';
}
</script>
</body>
</html>
Output:Blog Elfan
Properti Style captionSide DOMBook | Author | Price |
---|---|---|
Adu kambing | Sumira, Darmini | 504 |
Pengenalatan Judi Slot | CLRY | 1004 |
- 4 Value columnFill Style DOM pada HTML
- 4 Value columnGap Style DOM pada HTML
- 5 Value Properti columnRule Style DOM pada HTML
- 3 Value Properti columnRuleColor Style DOM pada HTML
- 12 Value Properti columnRuleStyle DOM pada HTML
- 6 Value Properti columnRuleWidth Style DOM pada HTML
- 5 Value Properti columns Style DOM pada HTML
5 komentar untuk "Mengatur Posisi Caption HTML Menggunakan captionSide Style DOM"
Hubungi admin melalui Wa : +62-896-2414-6106
Respon komentar 7 x 24 jam, mohon bersabar jika komentar tidak langsung dipublikasi atau mendapatkan balasan secara langsung.
Bantu admin meningkatkan kualitas blog dengan melaporkan berbagai permasalahan seperti typo, link bermasalah, dan lain sebagainya melalui kolom komentar.
- Ikatlah Ilmu dengan Memostingkannya -
- Big things start from small things -
Jenis browser apa saja yang dapat digunakan untuk mengaktifkan properti captionSide Style DOM pada HTML?
BalasHapusBerikut ini adalah beberapa contoh browser populer yang dapat digunakan untuk mengaktifkan properti captionSide Style DOM pada HTML:
Hapus1. Google Chrome
2. Internet Explorer 9.0
3. Firefox
4. Opera
Apa yang dimaksud dengan properti captionSide Style DOM pada HTML?
BalasHapusProperti captionSide Style DOM pada HTML digunakan untuk mengatur atau mengembalikan nilai posisi title dari tabel pada dokumen HTML.
HapusProperti captionSide Style DOM pada HTML digunakan untuk mengatur atau mengembalikan nilai posisi title tabel.
Hapus