<!DOCTYPE> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <style> *{ box-sizing: border-box; padding: 0; margin: 0; } div{ display: flex; background-color: red; } div>span{ display: inline-block; width: 100px; height: 100px; flex-shrink: 1; margin-left: 10px; background-color: white; } </style> </head> <body> <div> </div> <script> setInterval(function(){ document.querySelector('div').appendChild(document.createElement('span')); },1000); </script> </body> </html> flex-shrink
flex-shrink