这篇文章主要讲解了“css如何实现文字横排”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“css如何实现文字横排”吧!
css实现文字横排的方法:首先创建一个HTML示例文件;然后创建p标签;最后通过“writing-mode: horizontal-tb;”属性实现文字横排即可。
本文操作环境:windows7系统、HTML5&&CSS3版、Dell G3电脑。
css怎么实现文字横排?
css实现文字横向排列/竖向排列writing-mode:书写模式
属性值 | 效果 |
---|---|
horizontal-tb | 横向排列 |
vertical-rl | 竖向排列,从右到左 |
vertical-lr | 竖向排列,从左到右 |
举例如下:
html:
<p class="textBox">
<h2>horizontal-tb:横向排列</h2>
<h2>vertical-rl:纵向排列,从右到左</h2>
<h2>vertical-lr:纵向排列,从左到右</h2></p>
css:
<style>
.textBox h2{
width: 200px;
height: 200px;
margin: 10px 10px;
padding: 10px;
float: left;
}
.textBox h2:nth-of-type(1){
writing-mode: horizontal-tb;
background-color: #42b983;
}
.textBox h2:nth-of-type(2){
writing-mode: vertical-rl;
background-color: #42a8b9;
}
.textBox h2:nth-of-type(3){
writing-mode: vertical-lr;
background-color: #81b9aa;
}
</style>
实现效果:
感谢各位的阅读,以上就是“css如何实现文字横排”的内容了,经过本文的学习后,相信大家对css如何实现文字横排这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!