<!DOCTYPE html>
<html>
<head>
<title>vue </title>
<style type="text/css">
*{
margin:0px;
padding:0px;
}
.duiqi{ /*解决p标签自动换行文字两端不对齐问题*/
text-align: justify; /*实现两端对齐*/
text-justify: newspaper; /*通过增加或减少字或字母之间的空格对齐文本*/
word-break: break-all; /*允许在单词内换行*/
}
</style>
</head>
<script src="./vue.js"></script>
<body>
<div id="warning">
<!-- other演示 -->
<p style="width:160px;background-color:#f2f2f2;">
<span>这是一个</span>
<span v-for="item in pMessage" class="duiqi">{{item}}</span>
</p>
</div>
<script src="./vue.js"></script>
<script>
var vm = new Vue({
el: '#warning',
data:{
pMessage:['<<这时一个字>>','<<我是一头小毛驴>>','<<上下>>','<<你从哪里来要到哪里去>>','<<就是为了个测试>>','<<不好玩>>','<<耶耶>>','<<听听i你您你呢>>']
},
})
</script>
</body>
</html>
解决p标签自动换行文字两端不对齐问题
最新推荐文章于 2024-04-18 18:38:24 发布