显示来自具有属性“length”的 bean 的图像视频的
我需要显示视频对象的图像,视频长度位于图像的右下角。
我尝试了这个:
<h:graphicImage url="#{video.picUrl}" height="30" width="30">
<h:outputText value="#{video.Length}" />
</h:graphicImage>
但是长度文本显示在图像之外。我怎样才能把它放在图像的右下角?
I need to display an image of a video object with the video length on the bottom right side of the image.
I tried this:
<h:graphicImage url="#{video.picUrl}" height="30" width="30">
<h:outputText value="#{video.Length}" />
</h:graphicImage>
But the length text is shown outside the image. How can I get it on the bottom right inside the image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个纯粹的 HTML/CSS 问题。您首先需要弄清楚生成的 HTML/CSS 应该是什么样子才能实现您的功能需求。例如,以下 HTML
和 CSS
应该适合您。
您会看到,
.text
相对于.imageWithText
是绝对定位的,bottom
和right
位于上>3px
,这样它就能很好地粘在右下角。现在,要使用 JSF 生成相同的 HTML,代码应该类似于
相同的 CSS 是可重用的。
This is a pure HTML/CSS issue. You first need to figure how the generated HTML/CSS should look like to achieve your functional requirement. For example, the following HTML
with the following CSS
should work out for you.
You see, the
.text
is absolutely positioned relative to the.imageWithText
, withbottom
andright
on3px
so that it sticks nicely to the bottom right.Now, to generate the same HTML with JSF, the code should look like
The same CSS is reuseable.