使用 CSS 在多个框的底部创建固定文本
我使用 CSS 来对齐具有标准高度的预览文章框底部的文本(这只是一个“阅读更多”链接)。 “阅读更多”链接现在显示在预告文本的正下方,我需要将其放置在文章框底线上方几个像素的位置,与文本高度无关,就像这样
___________________________
|
|
|
|
|
| read more >>
|___________________________
你能给我一些想法或例子吗?
问候, 乔治
I am using CSS to align my text (which is just a "read more" link) at the bottom of my preview article boxes which have a standard height. The "read more" link now show up just below of the teaser text and I need to position it just a few pixels above the bottom line of the article box independently of the text height, like this
___________________________
|
|
|
|
|
| read more >>
|___________________________
Can you please give me some ideas or examples ?
Regards,
George
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将您的文章元素设置为具有
position:relative
,然后将阅读更多链接设置为具有position:absolute
,以便您可以将其定位在使用bottom
/right
css 属性的文章。示例位于 http://www.jsfiddle.net/gaby/7bduy/
Set your article element to have
position:relative
and then set the read more link to haveposition:absolute
so that you can position it within the article using thebottom
/right
css properties..example at http://www.jsfiddle.net/gaby/7bduy/
我已经很长时间没有使用 Javascript 了,但是在“相关”部分有一个链接可以帮助您:CSS:固定到底部并居中
I haven't used Javascript in a long time, but right on the "Related" section there's a link that may help you: CSS: fixed to bottom and centered
您可以考虑相对定位文本。
在 css 中:
这将允许您在框中相对于根据文档流规则应有的位置移动链接。
You can look into positioning the text relatively.
in css:
this will allow you to move the link around in the box relative to the position where it's supposed to be according to document flow rules.
如果您的文章“文本”大小固定,请执行以下操作:
CSS:
...或类似的操作:)
If your article 'text' is fixed size, do something like this:
CSS:
...or something like that :)