“CSS -Transformationszentrum” Code-Antworten

wie man Div mit Transformation zentriert

// Make sure the parent has position: relative 
.some_class {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 }
Black Buffalo

CSS -Transformationszentrum

<body>
	<div class="my-div">Centered text</div>
<style>
  .my-div {
    position: absolute;
    top: 50%; right: 50%;
    transform: translate(50%,-50%);
  }
</style>
</body>
MrStonkus

Ähnliche Antworten wie “CSS -Transformationszentrum”

Fragen ähnlich wie “CSS -Transformationszentrum”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen