Answers for "css 2 div in 1 line"

CSS
0

css make div one line

div {
    width: 100px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
Posted by: Guest on January-03-2021
0

css make div one line

div.page {
    text-align:center;
    border: 1px solid rgb(0,0,0);
    width:20px;
    height:20px;              
    float: left;
}
Posted by: Guest on January-03-2021

Browse Popular Code Answers by Language