码迷,mamicode.com
首页 > Web开发 > 详细

[js]纯css强制不换行

时间:2018-10-25 20:43:01      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:function   ips   style   alt   lang   lis   creat   ace   --   

技术分享图片

要加在li上

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        div {
            width: 100px;
            height: 200px;
            border: 1px solid red;
            padding: 20px;
            line-height: 30px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        ul li {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    </style>
</head>
<body>
<div>
    <ul id="ul1">
        <li>1, test1</li>
        <li>2, test2</li>
        <li>3, test3</li>
    </ul>
</div>

<script src="data.js"></script>
<script>
    //


    var oUl = document.getElementById('ul1');
    var OLis = document.getElementsByTagName('li');
    for (var i = 0; i < OLis.length; i++) {
        OLis[i].onmouseover = function () {
            this.style.backgroundColor = "pink";
        };
        OLis[i].onmouseout = function () {
            this.style.backgroundColor = '';
        };
    }

    var oFrm = document.createDocumentFragment();

    for (var i = 0; i < arr.length; i++) {
        var oLi = document.createElement('li');
        oLi.innerHTML = '<li>' + arr[i].title + '----' + arr[i].desc + '</li>';
        oFrm.appendChild(oLi);
    }

    oUl.appendChild(oFrm);
</script>
</body>
</html>

[js]纯css强制不换行

标签:function   ips   style   alt   lang   lis   creat   ace   --   

原文地址:https://www.cnblogs.com/iiiiiher/p/9852608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!