この青枠を消すには
たとえばこんなスタイルを用意する
.outline_none {
outline: none;
}
デモ
通常のテキストエリア
フォーカス時の青枠を消す
コード.gs
function doGet() {
return HtmlService.createHtmlOutputFromFile("index");
}
|
意訳この機能がやること 指定したHTMLファイルを表示する |
index.html
<!DOCTYPE html>
<html>
<head>
<style>
.outline_none {
outline: none;
}
</style>
</head>
<body>
<textarea class='outline_none'></textarea>
</body>
</html>
|
