我正在通过API将html文档上传到Google文档。所有图像都是内联设置的,但我更喜欢固定(文字环绕)。有没有办法在html上标记它,以便导入的文档对齐每个图像的正确方式,或者有没有办法在上传之前在API上设置图像包装?
作为参考,这是我想要的,但是自动执行:
https://drive.googleblog.com/2010/07/tips-tricks-using-images-in-google.html
答案 0 :(得分:0)
我觉得这样的事情
<body style="background-image: url('test3.jpg'); background-repeat: no-repeat; background-position: center; background-attachment: scroll;"> color name <br><br><br></body>
<body style="background-image: url('test3.jpg'); background-repeat: no-repeat; background-position: center; background-attachment: fixed;"> color name <br><br><br></body>
参见背景附件:已修复