如何在Jupyterlab中居中对齐Altair图表,使其在导出的HTML中保持居中? 以下代码使notebook中的绘图居中;但是,当我将notebook导出为HTML时,输出为空/空白。 import altair as alt
import pandas as pd
from IPython.core.display import display, HTML
df=pd.DataFrame({'a': [1,2,3], 'b': [2,3,4]})
c=alt.Chart(df).mark_bar().encode(
x='a'
我的网页位于960px宽的DIV中,我使用以下代码将此DIV居中:
html,body{background: url(images/INF_pageBg.gif) center top repeat-y #777777;text-align:center;}
#container{background-color:#ffffff;width:960px;text-align:left;margin:0 auto 0 auto;}
我需要html/body的背景图像来平铺页面的中间,它做到了,但是如果浏览器中可见的窗格是奇数个像素宽度,那么居中的背景和居中的DIV就不会对齐。
这只发生在FF中
我在网页上有一张图片。当我点击它,它应该显示全屏。
我有以下代码:
<!doctype html>
<html>
<head>
<script>
function makeFullScreen() {
var divObj = document.getElementById("theImage");
//Use the specification method before using prefixed versions
if (divObj.r