gradio使得制作的网页标题居中的代码
时间: 2024-12-20 08:23:59 浏览: 29
Gradio是一个开源工具,用于创建交互式的机器学习模型演示。如果你想在使用Gradio创建的网页中让标题居中显示,你可以使用HTML的基本样式来设置。以下是一个简单的例子:
```html
<!DOCTYPE html>
<html>
<head>
<style>
.container {
text-align: center; /* 这将使内容水平居中 */
}
.title {
font-size: 24px; /* 根据需要调整字体大小 */
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">我的机器学习模型示例</h1>
<!-- Your Gradio app code goes here -->
</div>
<script src="https://cdn.jsdelivr.net/npm/gradio@latest/dist/gradio.min.js"></script>
<!-- Include the Gradio library -->
<script src="your_gradio_app.js"> </script> <!-- Replace with your actual script file -->
</body>
</html>
```
在这个例子中,`.container` 类设置了整体的文本对齐为居中,并且`.title` 类设置了标题的样式。请替换 `your_gradio_app.js` 为实际的Gradio应用程序脚本。
阅读全文