Blog Css Style

博客页面的style设定记录(备忘)

  • 博客主题:MemE

  • 图片浮动在页面右端:

1
<img src="image.jpg" style="float:right; margin: 5px;" />
  • 实现段落两端对齐
1
2
3
4
p {
  text-align: justify; /* 文本两端对齐 */
  text-justify: inter-ideograph; /* 调整表意文字间距以保持两端对齐 */
}
  • 博客链接到本页面章节
1
2
3
4
<!-- links to element on this page with id="attr-href" -->
<a href="#属性">
Description of Same-Page Links
</a>
updatedupdated2022-08-202022-08-20
加载评论