markdown 左右分栏 css

版权声明:此文章版权归呆呆所有,转发请注明出处! https://blog.csdn.net/zhangyu4863/article/details/83504008
  • markdown是支持css的
  • 代码如下:
<html>
    <table style="margin-left: auto; margin-right: auto;">
        <tr>
            <td>
                <!--左侧内容-->
                左侧
            </td>
            <td>
                <!--右侧内容-->
                右侧
            </td>
        </tr>
    </table>
</html>
  • 结果:
左侧 右侧
  • 最后可以在此基础上直接更改自己喜欢的

猜你喜欢

转载自blog.csdn.net/zhangyu4863/article/details/83504008