flexDirection Style HTML DOM dan Fungsinya
- berfungsi untuk mengembalikan nilai properti flexDirection: object.style.flexDirection
- berfungsi untuk mengatur nilai properti flexDirection: object.style.flexDirection = "row|row-reverse|column|column-reverse|initial|inherit"
Return Values: digunakan untuk mengembalikan sebuah nilai string yang merepresentasikan properti flex-direction dari suatu elemen.
- row: digunakan untuk menampilkan item fleksibel secara horizontal sebagai sebuah baris.
- row-reverse: memiliki fungsi yang hampir sama seperti value row, tetapi dengan urutan yang berkebalikan.
- column: digunakan untuk menampilkan item fleksibel secara vertikal sebagai sebuah kolom.
- column-reverse: memiliki fungsi yang hampir sama seperti value column, tetapi dengan urutan yang berkebalikan.
- initial: digunakan untuk mengatur nilai properti ke nilai default-nya.
- inherit: digunakan untuk menerima nilai turunan properti dari elemen parent.
Contoh: penggunaan nilai row.
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style flexDirection
DOM
</title>
<style>
.main
{
width: 500px;
height: 300px;
border: 1px solid;
display: flex;
flex-direction: column;
}
.main div {
width: 100px;
height: 50px;
font-size: 2rem;
text-align: center;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style flexDirection
DOM
</b>
<div class="main">
<div
style="background-color:lightgreen;">
Portal
</div>
<div
style="background-color:green;">
Nasi
</div>
<div
style="background-color:lightgreen;">
Padang
</div>
<div
style="background-color:green;">
Murah
</div>
<div
style="background-color:lightgreen;">
Semarang
</div>
</div>
<button
onclick="changeFlexDirection()">
Change flexDirection
</button>
<script>
function changeFlexDirection()
{
document.querySelector(
'.main').style.flexDirection = "row";
}
</script>
</body>
</html>
Contoh: penggunaan nilai row-reverse.
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style flexDirection
DOM
</title>
<style>
.main
{
width: 500px;
height: 300px;
border: 1px solid;
display: flex;
flex-direction: column;
}
.main div
{
width: 100px;
height: 50px;
font-size: 2rem;
text-align: center;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style flexDirection
DOM
</b>
<div class="main">
<div
style="background-color:lightgreen;">
Rumah
</div>
<div
style="background-color:green;">
Makan
</div>
<div
style="background-color:lightgreen;">
Nasi
</div>
<div
style="background-color:green;">
Padang
</div>
<div
style="background-color:lightgreen;">
Murah
</div>
</div>
<button
onclick="changeFlexDirection()">
Change flexDirection
</button>
<script>
function changeFlexDirection()
{
document.querySelector(
'.main').style.flexDirection =
"row-reverse";
}
</script>
</body>
</html>
Contoh: penggunaan nilai column.
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style flexDirection DOM
</title>
<style>
.main
{
width: 500px;
height: 300px;
border: 1px solid;
display: flex;
}
.main div
{
width: 100px;
height: 50px;
font-size: 2rem;
text-align: center;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style flexDirection DOM
</b>
<div class="main">
<div
style="background-color:lightgreen;">
Rumah
</div>
<div
style="background-color:green;">
Makan
</div>
<div
style="background-color:lightgreen;">
Padang
</div>
<div
style="background-color:green;">
Murah
</div>
<div
style="background-color:lightgreen;">
Meriah
</div>
</div>
<button
onclick="changeFlexDirection()">
Change flexDirection
</button>
<script>
function changeFlexDirection()
{
document.querySelector(
'.main').style.flexDirection = "column";
}
</script>
</body>
</html>
Contoh: penggunaan nilai column-reverse.
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style flexDirection
DOM
</title>
<style>
.main
{
width: 500px;
height: 300px;
border: 1px solid;
display: flex;
}
.main div
{
width: 100px;
height: 50px;
font-size: 2rem;
text-align: center;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style flexDirection
DOM
</b>
<div class="main">
<div
style="background-color:lightgreen;">
Rumah
</div>
<div
style="background-color:green;">
Makan
</div>
<div
style="background-color:lightgreen;">
Padang
</div>
<div
style="background-color:green;">
Murah
</div>
<div
style="background-color:lightgreen;">
Portal
</div>
</div>
<button
onclick="changeFlexDirection()">
Change flexDirection
</button>
<script>
function changeFlexDirection()
{
document.querySelector(
'.main').style.flexDirection =
"column-reverse";
}
</script>
</body>
</html>
Contoh: penggunaan nilai initial.
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style flexDirection
DOM
</title>
<style>
.main
{
width: 500px;
height: 300px;
border: 1px solid;
display: flex;
flex-direction: column;
}
.main div
{
width: 100px;
height: 50px;
font-size: 2rem;
text-align: center;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style flexDirection
DOM
</b>
<div class="main">
<div
style="background-color:lightgreen;">
Rumah
</div>
<div
style="background-color:green;">
Makan
</div>
<div
style="background-color:lightgreen;">
Padang
</div>
<div
style="background-color:green;">
Murah
</div>
<div
style="background-color:lightgreen;">
Meriah
</div>
</div>
<button
onclick="changeFlexDirection()">
Change flexDirection
</button>
<script>
function changeFlexDirection()
{
document.querySelector(
'.main').style.flexDirection =
"initial";
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style flexDirection DOM
</title>
<style>
#parent
{
flex-direction: column-reverse;
}
.main
{
width: 500px;
height: 300px;
border: 1px solid;
display: flex;
}
.main div
{
width: 100px;
height: 50px;
font-size: 2rem;
text-align: center;
}
</style>
</head>
<body>
<h1
style="color: green">
Blog Elfan
</h1>
<b>
Properti Style flexDirection DOM
</b>
<div id="parent">
<div class="main">
<div
style="background-color:lightgreen;">
Rumah
</div>
<div
style="background-color:green;">
Makan
</div>
<div
style="background-color:lightgreen;">
Padang
</div>
<div
style="background-color:green;">
Murah
</div>
<div
style="background-color:lightgreen;">
Sekali
</div>
</div>
</div>
<button
onclick="changeFlexDirection()">
Change flexDirection
</button>
<script>
function changeFlexDirection()
{
document.querySelector(
'.main').style.flexDirection =
"inherit";
}
</script>
</body>
</html>
- 5 Value Properti cssFloat Style DOM pada HTML
- 6 Value Properti Font Style DOM pada HTML
- 3 Value Properti fontFamily Style DOM pada HTML
- 13 Value fontSize Style DOM pada HTML
- 5 Value Properti fontStyle DOM pada HTML
- 4 Value Properti fontVariant Style DOM pada HTML
- 7 Value Properti fontWeight Style DOM pada HTML
5 komentar untuk "flexDirection Style HTML DOM dan Fungsinya"
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 flexDirection Style DOM pada HTML?
BalasHapusBerikut adalah jenis browser yang dapat digunakan untuk mengaktifkan properti flexDirection Style DOM pada HTML:
Hapus1. Google Chrome
2. Internet Explorer 11.0
3. Firefox
4. Opera
5. Apple Safari 6.1
Apa yang dimaksud dengan properti flexDirection Style DOM pada HTML?
BalasHapusProperti flexDirection style DOM pada HTML merupakan properti yang digunakan untuk menetapkan atau mengembalikan arah item fleksibel pada suatu elemen.
HapusCatatan: jika elemen yang digunakan pada properti bukan merupakan item yang fleksibel, maka properti flexDirection tidak dapat bekerja pada elemen tersebut.
Hapus