如何更改一个单元格 jupyter lab 中文本的字体大小?

How to change the font size of text in one cell jupyter lab?

我想更改 jupyter lab 中特定降价单元格的字体大小,而不是整个输出。我将在最后将我的项目转换为 html 文件。

我已经试过了:

<html>
    <head>
        <style>
            div.a {
             font-size: 300%;
              }
        </style>
        <body>
            <div class="a">My text in here</div>
        </body>
    </head>
</html>

但是在我 运行 我的单元格在 Markdown 下后,这并没有改变我的文字大小。 我也不想使用,以便不为该特定文本提供自动编号。

提前致谢

我看到你想更改字体大小:

<html>
<head>
    <style type="text/css">
        .a{                    //for class use .(class-name) 
            font-size: 300%;
        }
    </style>
</head>                        // all the styling is to be done inside the head tag.
<body>
    <div class="a">My text in here</div>
</body>
</html>