我不明白为什么我的迁移在 Laravel 8 的全新安装中失败。这就是我得到的:
Illuminate\Database\QueryException
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo failed: Name or service not known (SQL: select * from information_schema.tables where table_schema = bunny and table_name = migrations and table_type = 'BASE TABLE')
at vendor/laravel/framework/src/Illuminate/Database/Connection.php:678
674? // If an exception occurs when attempting to run a query, we'll format the error
675? // message to include the bindings with SQL, which will make this exception a
676? // lot more helpful to the developer instead of just the database's errors. …Run Code Online (Sandbox Code Playgroud) 我想使用Tailwind Css为大屏幕和小屏幕上显示的图标头像保持完美的圆形。
我确实知道我可以使用这样的渐变径向:
.avatar{
background: radial-gradient(circle closest-side,
yellow calc(100% - 2px),#db0100 calc(100% - 1px) 99%,transparent 100%);
color: #db0100;
}
Run Code Online (Sandbox Code Playgroud)
但我真的想使用 Tailwind。是否可以?谢谢。