以下のような表現をしたいときのスタイルをlabel1に書きました。
コード.gs
function doGet() {
return HtmlService.createHtmlOutputFromFile("index");
}
|
意訳この機能がやること 指定したHTMLファイルを表示する |
index.html
<!DOCTYPE html>
<html>
<head>
<style>
.label1 {
border: solid 1px lightgray;
white-space: nowrap;
padding: 10px;
display: block;
overflow: hidden;
text-overflow: ellipsis;
width: 50vw;
}
</style>
</head>
<body>
<label class="label1">あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわをん</label>
</body>
</html>
|
参考
display
overflow
white-space
text-overflow
