another #css trick, if you want to visually shorten long links, but only when they are longer than its container width (at max-width)
#webdev #pico8
a {
display: inline-block;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: bottom;
}
hello, pico-8-edu.com :)#webdev #pico8