GAS로 웹 앱 '영화 감상 기록' 만들기 ②/Excel 파일을 웹 앱으로 변환(후편)
보충
전회, 설정 파일과 CSS에 대해서 UP하지 않았으므로, 이러한 파일에 대해서도 UP합니다.
뭐라고 하는 일은 없습니다만, 이것으로 같은 화면을 표시할 수 있다고 생각합니다.
구성 g. gs
// ファイル(スプレッドシート)のID
var ViewingRecordID = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; //「映画鑑賞記録」のファイルID
css.html
<style>
table#resultList {
width: 1100px;
}
div.container-fluid {
text-align: -webkit-center;
}
/*スクロール用*/
thead.scrollHead,tbody.scrollBody {
display: block;
}
tbody.scrollBody {
overflow-y: scroll;
height: 810px;
}
.head01 {
width: 55px;
text-align: center;
}
.head02 {
width: 500px;
text-align: center;
}
.head03 {
width: 80px;
text-align: center;
}
.head04 {
width: 355px;
text-align: center;
}
.col01 {
width: 55px;
display: table-cell;
text-align: center;
vertical-align: middle;
}
.col02 {
width: 500px;
display: table-cell;
text-align: left;
vertical-align: middle;
}
.col03 {
width: 80px;
display: table-cell;
text-align: center;
vertical-align: middle;
}
.col04 {
width: 355px;
display: table-cell;
text-align: left;
vertical-align: middle;
}
</style>
◆ 이전 기사 GAS로 웹 앱 '영화 감상 기록' 만들기 ①
◆ 다음 기사 GAS로 웹 앱 "영화 감상 기록"을 만드는 ③
◆ 색인 GAS로 웹 앱 "영화 감상 기록"을 만드는 "색인"
Reference
이 문제에 관하여(GAS로 웹 앱 '영화 감상 기록' 만들기 ②/Excel 파일을 웹 앱으로 변환(후편)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/pump33/items/47633051e865ada707a2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)