在“Blogger”内显示内容正确设置最大宽度

发布于 2024-12-07 21:16:45 字数 191 浏览 0 评论 0原文

如何将我的博客的内容部分括起来以显示特定宽度的任何项目(JPEG/视频)???我只想在项目大于“...px”时重新调整大小,

我目前使用“blogger”,我可以操纵整个博客的 html,也可以在单独的帖子中需要时使用标签。 ..我几个小时以来一直在尝试使用 div 标签但没有成功,所以我认为最好在多次失败的尝试后询问。

不管怎样谢谢

How can I enclose the content section of my blog to display any items(JPEGs/video) to a certain width??? I'd like to re-size only if the items are larger then "...px"

I currently use 'blogger', I can either manipulate the html for my entire blog or make up tags to use when needed inside individual posts...I've been attempting things with the div tag unsuccessfully for hours so I though it best to ask after so many failed attempts.

Thanks regardless

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

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

发布评论

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

评论(1

泪是无色的血 2024-12-14 21:16:45

我对此很陌生,但我认为您可以使用 CSS 来做到这一点

在您的模板(HTML 视图)中搜索 inside

并放置有些像上面这样。

在CSS中

.content {
    [your content css]
}

.max900 {
    max-width:900px
}

您可以自定义上面的“...px”。

在 HTML 中

然后在您的博客内容中的 HTML 视图中,定义类“content”和“max900”:

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

  <div class="content max900">
      Maecenas ut tellus lorem, in mattis ante.
      <img class="max900" src="image.jpg" />
  </div>

Nulla aliquam, sed venenatis erat lorem sit amet dolor.

PS。对不起我的英语。

I'm new on this but I think you can do it using CSS

In your template (HTML View) search for </style> inside <header> and put some like this above.

In CSS

.content {
    [your content css]
}

.max900 {
    max-width:900px
}

You can customize the "...px" above.

In HTML

Then in your blog content, in HTML View, define classes "content" and "max900":

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

  <div class="content max900">
      Maecenas ut tellus lorem, in mattis ante.
      <img class="max900" src="image.jpg" />
  </div>

Nulla aliquam, sed venenatis erat lorem sit amet dolor.

PS. Sorry for my English.

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