サーバレス練習帳

着眼大局着手小局

2020-05-15から1日間の記事一覧

bootstrapを始める!

【1】セットアップ では、まずはセットアップからね。 techacademy.jpCompiled CSS and JSを、ダウンロード! https://getbootstrap.com/docs/4.5/getting-started/download/jqueryもダウンロードだ! https://jquery.com/ちなみに、注意点です。 ここで重要…

htmlのページをスイッチする

switchToFlow(flow: string): void { this.analyserNodeCallback = () => {}; Array.from(document.getElementsByClassName('flow')).map( e => ((e as HTMLDivElement).style.display = 'none') ); (document.getElementById(flow) as HTMLDivElement).styl…

html table の線を1本にしたいのです

blog.mukairiku.net <table border="1" style="border: 1px solid black; border-collapse: collapse;"> <tr><td>セル1</td><td>セル2</td></tr> <tr><td>セル3</td><td>セル4</td></tr> </table>こういうcssを書くのでも良いと思う。 <style type="text/css"> table,th,td {border: 1px solid black; border-collapse: collapse;} </style>ちなみに、表をキ…

opencv4nodejs

qiita.comqiita.com