HTML:
<ul>
<li><a href="">someloooooooooooooooooooooong text </a></li>
<li><a href="">someloooooooooooooooooooooong text </a></li>
</ul>
Как добавить такие рамки?
![enter image description here](https://i.stack.imgur.com/N8B8L.png)
Мой CSS:
ul {
display: block;
width: 255px;
border: 1px solid #007ab6;
}
ul a {
width: 225px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
ul a:hover {
overflow: visible;
width: unset;
display: inline-block;
border: 1px solid;
background: #ebf7fd;
}
Вот так это выглядит, но это не совсем то, что я хочу.
![enter image description here](https://i.stack.imgur.com/0gXjY.png)