" いいね " なライフをつくる。

うそはつかない。"いいね"をつくる。じゆーうな日記です。

2018-08-29から1日間の記事一覧

<ul>ul要素の、くろぽち・を消す方法

環境、対象 html css 要点 < ul >要素のくろぽち・を消す方法です ul要素に対してlist-style: noneを当てると消えます。 内容 コード <style> ul { list-style: none; } </style> <ul> <li>hello1</li> <li>hello2</li> <li>hello3</li> </ul> ↓↓こうなります↓↓ おさらい ul要素に対してlist-style: noneを当てる…

【git エラー解決策】Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. が出た時の解決方法

【2019/6/22 更新】わかりやすいように改善しました。 自分の動作環境(他の環境でも問題なしです) Homestead Vagrant git エラー文章 $ git push origin master Permission denied (publickey). fatal: Could not read from remote repository. Please mak…