html常用语法拓展

#Obsidian #html

Object

常用属性:

  • width
  • height

iframe嵌入网页

常用属性:

例如插入本仓库网页:

<iframe height=100% width=100% src="https://github.com/h13-0/Notebooks"></iframe>

效果(登陆以提供浏览权限):

details单击展开折叠

Demo:

<details>
<summary>提示内容</summary>

需要折叠的内容

</details>

效果:

单击展开折叠

需要折叠的内容

分栏

<html>
    <table style="margin-left: auto; margin-right: auto;">
        <tr>
            <td>
                <!--左侧内容-->
                左侧
            </td>
            <td>
                <!--右侧内容-->
                右侧
            </td>
        </tr>
    </table>
</html>

效果:

左侧 右侧