h3 {
white-space: nowrap; /* Запрещаем перенос строк */
overflow: hidden; /* Обрезаем все, что не помещается в область */
text-overflow: ellipsis; /* Добавляем многоточие */
}
html {
position: relative;
min-height: 100%;
}
body {
/* Тут укажи высоту футера */
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Тут укажи высоту футера */
height: 60px;
background-color: #f5f5f5;
}