根据文本对齐背景图像
是否可以根据文本结束的位置对齐背景图像?
演示代码:
.textBox .text { padding-top: 8px; background: url('../images/text-top.gif') left top no-repeat; padding-right:15px; }
.textBox .bottom { padding: 0px 0px 20px 15px; background: url('../images/text-bottom.gif') right bottom no-repeat; }
<div class="textBox">
<div class="text">
<div class="bottom">blah blah blah multi-line text here</div>
</div>
</div>
我想要完成的是 ../images/text-bottom.gif 在文本末尾对齐。
Is is possible to align a background image according to where the text ends?
Demo code:
.textBox .text { padding-top: 8px; background: url('../images/text-top.gif') left top no-repeat; padding-right:15px; }
.textBox .bottom { padding: 0px 0px 20px 15px; background: url('../images/text-bottom.gif') right bottom no-repeat; }
<div class="textBox">
<div class="text">
<div class="bottom">blah blah blah multi-line text here</div>
</div>
</div>
What i want to accomplish is the ../images/text-bottom.gif to be aligned at the end of the text.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试添加显示:
try add display:
不,简单的内联显示不起作用。
但我找到了一个解决方案
,我将最后一个单词放在 [span] 标签中,将所有文本放在 [p] 标签中,并按如下方式修改我的 css:
使用正则表达式,我找到文本的最后一个单词,并将其括在 [ span] 它的工作原理就像我想要的那样
no, simple display inline didn;t work.
yet i found a solution
i place the final word in a [span] tag, all text in [p] tag and modify my css as follow:
Using regular expression, i find the last word of my text, and i enclose it in [span] and it works like i want