Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有下面显示的图像(蓝色气泡),我需要在它后面放文字。
文本的数量会经常变化,所以我需要能够让图像(垂直)展开以容纳更多的文本。
希望通过这个获得正确的方向。看不出如何让图像随着文本量的增加而扩展......
谢谢你
div { background:url('myimage.jpg') no-repeat; width:0 auto; /* add fixed width if need only to expand vertically */ height:0 auto; padding:5px; background-size:cover; /* background-size:100% 100%; */ }
而是制作div的图像背景!div 将自动调整其宽度和高度;)