css 这样的样式怎么写
发布网友
发布时间:2022-04-20 10:09
我来回答
共1个回答
热心网友
时间:2022-04-06 14:54
给div加上这句css
white-space:nowrap;
强制一行显示不换行。
white-space的默认值是normal
完整例子
<!DOCTYPE html>
<html>
<head>
<title>HTML模板</title>
<meta charset="UTF-8"/>
<style type="text/css">
div{
width:100px;
height:100px;
background-color:blue;
white-space:nowrap;
}
</style>
<script>
</script>
</head>
<body>
<div>文字文字文字文字文字文字文字文字文字文字文字</div>
</body>
</html>