sIFR 中的首行文本缩进

发布于 2024-08-12 06:26:48 字数 270 浏览 4 评论 0原文

我有一个用 sIFR 制作的文本块,我想缩进第一行。

看看这张图片,看看我想要什么:

http://alltutorials.hi2.ro/testimonial.jpg

我希望“WOW”这个词位于大引号后面。

我搜索了 sIFR 文档,我使用了文本缩进,但它似乎不起作用。

感谢您的帮助,

安德烈

粘贴链接,因为它不能直接工作。

I have a text block made whith sIFR and I want to indent the first line.

Look at this image to see what I want:

http://alltutorials.hi2.ro/testimonial.jpg

I want the word WOW to be after the big quotes.

I searched the sIFR documention I used text-indent but it seems it doesn't work.

Thank's for the help,

Andrei

Paste the link because, it does not work directly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

萌能量女王 2024-08-19 06:26:48

我对 sIFR 不太熟悉,但也许简单的 padding-left 就可以解决问题?如果将其视为内联元素,则不应在接下来的几行中重复它。

I'm not that familiar with sIFR, but maybe a simple padding-left will do the trick? If it is treated as an inline element, it should not be repeated in the next few lines.

|煩躁 2024-08-19 06:26:48

你可以尝试在 sIFR 中设计它的样式,正如 Pekka 所说,如下所示:

function sIFR_h1() 
{
  sIFR.replace(grau, {
  selector: 'h1, div.h1',
  css: 
      '.sIFR-root { letter-spacing:-1.66; font-size:42px; color: #36313d; [...]}'
    ,transparent: true  
    ,selectable: false      
  });
}

You can try styling it within sIFR, as Pekka said, something like this :

function sIFR_h1() 
{
  sIFR.replace(grau, {
  selector: 'h1, div.h1',
  css: 
      '.sIFR-root { letter-spacing:-1.66; font-size:42px; color: #36313d; [...]}'
    ,transparent: true  
    ,selectable: false      
  });
}
[浮城] 2024-08-19 06:26:48

尽管您可以使用 modifyContentString() 回调来插入一些空格,但您不认为可以通过 CSS 来做到这一点?

Don't think you can do this through CSS, though perhaps you could use the modifyContentString() callback to insert a few spaces?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文