The justify-content property for CSS aligns the contents of the box as a whole within the box itself along the inline/row/main axis of the box.
object.style.justifyContent = "value"; <'justify-content'> = normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] normal Represents the default alignment for the layout mode.
<content-distribution> = space-between | space-around | space-evenly | stretch space-between The alignment subjects are evenly distributed in the alignment container.
space-around The alignment subjects are evenly distributed in the alignment container, with a half-size space on either end.
space-evenly The alignment subjects are evenly distributed in the alignment container, with a full-size space on either end.
stretch If the combined size of the alignment subjects is less than the size of the alignment container, any auto-sized alignment subjects have their size increased equally (not proportionally), while still respecting the constraints imposed by max-height/max-width (or equivalent functionality), so that the combined size exactly fills the alignment container.
<overflow-position> = unsafe | safe unsafe Regardless of the relative sizes of the alignment subject and alignment container, the given alignment value is honored.
safe If the size of the alignment subject overflows the alignment container, the alignment subject is instead aligned as if the alignment mode were start.
<content-position> = center | start | end | flex-start | flex-end center Centers the alignment subject within its alignment container.
start Aligns the alignment subject to be flush with the alignment container's start edge in the appropriate axis.
end Aligns the alignment subject to be flush with the alignment container's end edge in the appropriate axis.
flex-start Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the flex container's main-start or cross-start side, as appropriate. Only used in flex layout.
flex-end Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the flex container's main-end or cross-end side, as appropriate. Only used in flex layout.
left Aligns the alignment subject to be flush with the alignment container's line-left or physical left edge, whichever is in the appropriate axis.
right Aligns the alignment subject to be flush with the alignment container's line-right or physical right edge, whichever is in the appropriate axis.
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: space-between;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>space-between</div>
<div>space-between</div>
<div>space-between</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: space-around;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>space-around</div>
<div>space-around</div>
<div>space-around</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: space-evenly;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>space-evenly</div>
<div>space-evenly</div>
<div>space-evenly</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: stretch;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>stretch</div>
<div>stretch</div>
<div>stretch</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: unsafe center;
width: 0;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>unsafe</div>
<div>unsafe</div>
<div>unsafe</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: safe center;
width: 0;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>safe</div>
<div>safe</div>
<div>safe</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: center;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>center</div>
<div>center</div>
<div>center</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: start;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>start</div>
<div>start</div>
<div>start</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: end;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>end</div>
<div>end</div>
<div>end</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: flex-start;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>flex-start</div>
<div>flex-start</div>
<div>flex-start</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: flex-end;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>flex-end</div>
<div>flex-end</div>
<div>flex-end</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: left;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>left</div>
<div>left</div>
<div>left</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
justify-content: right;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<div class="myclass">
<div>right</div>
<div>right</div>
<div>right</div>
</div>
</body>
</html>
<!doctype html>
<html>
<head>
<style>
.myclass
{
display: grid;
grid-auto-columns: 100px;
grid-auto-flow: column;
grid-auto-rows: 100px;
width: 100%;
}
.myclass > div
{
background-image: linear-gradient(135deg, white, lightgray);
}
</style>
</head>
<body>
<button>initial</button><br>
<button>normal</button><br>
<button>space-between</button>
<button>space-around</button>
<button>space-evenly</button>
<button>stretch</button><br>
<button value="unsafe center">unsafe</button>
<button value="safe center">safe</button><br>
<button>center</button>
<button>start</button>
<button>end</button>
<button>flex-start</button>
<button>flex-end</button><br>
<button>left</button>
<button>right</button>
<div class="myclass">
<div>justify-content</div>
<div>justify-content</div>
<div>justify-content</div>
</div>
<script>
function myfunction(myparameter)
{
const mytarget = myparameter.target;
const myproperty = mytarget.value || mytarget.innerHTML;
const mystyle = document.querySelector(".myclass").style;
mystyle.justifyContent = myproperty;
mystyle.width = "100%";
if(myproperty.includes("safe"))
{
mystyle.width = "0";
}
}
for(const mybutton of document.querySelectorAll("button"))
{
mybutton.addEventListener("mouseover", myfunction);
}
</script>
</body>
</html>