hysts-debug/gradio-markdown-css-text-align-center
0
1#!/usr/bin/env python2 3import gradio as gr4 5css = """6h1 {7 text-align: center;8}9"""10 11with gr.Blocks(css=css) as demo:12 gr.Markdown("# title")13 14if __name__ == "__main__":15 demo.queue().launch()16 