Heim >Web-Frontend >Front-End-Fragen und Antworten >So legen Sie die richtige Ausrichtung in CSS fest
So legen Sie die richtige Ausrichtung in CSS fest: 1. Verwenden Sie das Attribut „cssposition“, um den richtigen Ausrichtungseffekt zu erzielen. 2. Verwenden Sie das Attribut „float“, um den richtigen Ausrichtungseffekt zu erzielen. 3. Verwenden Sie das Attribut „text-align“, um den richtigen Ausrichtungseffekt zu erzielen .
Die Betriebsumgebung dieses Artikels: Windows7-System, CSS3- und HTML5-Version, Dell G3-Computer.
Detaillierte Erklärung, wie man die richtige Ausrichtung über CSS festlegt:
1. Richtige Ausrichtung über das CSS-Positionsattribut realisieren
<h2>右对齐</h2> <p>以下实例演示了如何使用 position 来实现右对齐:</p> <div class="right"> <p>元素右对齐</p> </div> css代码: .right { position: absolute; right: 0px; width: 300px; border: 3px solid #73AD21; padding: 10px; }
Rendering:
2. Richtige Ausrichtung über das Float-Attribut realisieren
<html> <head> <style type="text/css"> img { float:right } </style> </head> <body> <p>在下面的段落中,我们添加了一个样式为 <b>float:right</b> 的图像。结果是这个图像会浮动到段落的右侧。</p> <p> <img src="/i/eg_cute.gif" / alt="So legen Sie die richtige Ausrichtung in CSS fest" > This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. </p> </body> </html>
Rendering:
3. Die richtige Ausrichtung wird durch das text-align-Attribut erreicht
<html> <head> <style type="text/css"> h1 {text-align: center} h2 {text-align: left} h3 {text-align: right} </style> </head> <body> <h1>这是标题 1</h1> <h2>这是标题 2</h2> <h3>这是标题 3</h3> </body> </html>
Rendering:
[Empfohlenes Lernen: CSS-Video-Tutorial]
Das obige ist der detaillierte Inhalt vonSo legen Sie die richtige Ausrichtung in CSS fest. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!