Not too sure what you're looking for, but here's a tip with a display and text indent:
Demo
CSS to demonstrate the idea:
.article-wrapper { border:solid; width:600px; margin:auto; text-indent:0; transition:1s } .article-wrapper:hover { text-indent:-500px;; } article { text-indent:0; display:inline-block; height:400px; width:500px; column-width:500px; }
If you need this effect, you can look for a way through the transition, animation, or javaScript to control it.
G-cyr source share