LoginSignup
1
1

More than 1 year has passed since last update.

Laravelで <textarea>の先頭にスペースが出てくる

Posted at

ローカルで開発中地味に改善するのに困ったのでメモ

実装したいもの

・自己紹介に入力した内容を修正したい

このように書いていました。

edit.blade.php
<textarea>
    {{ old($profile) ?? $profile->text }}
</textarea>

スクリーンショット 2021-05-14 21.12.04.png

このように先頭に変なスペースが出てきます。

改善方法

・一行で書く。

たったこれだけでした。

edit.blade.php
<textarea>{{ old($profile) ?? $profile->text }}</textarea>

スクリーンショット 2021-05-14 21.12.34.png

フロントをまだ使いこなせていないのでメモしていきます。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1