Flexbox Lebenslauf

Einfache anordnung von Containern fue ein Lebenslauf mit Flexbox erstellt
Kommentar abgeben zu diesen Beitrag/Code ?
Dann hier klicken

Der hier verwendete Code

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Lebenslauf</title>
<style>
* {
margin:0;
padding:0;
}
body{
display:flex;
flex-direction:column;
}
h1 {
font-size: 500%;
text-alig:center
}
h2{
margin:50px 0;
}
.flexbox-item {
border-bottom: 2px solid black;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: space-around;
justify-content: center;
align-items: center;
}
.line{
display: flex;
width: 100%;
flex-direction: row;
justify-content: space-evenly;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX