小编mos*_*mau的帖子

无法在 Laravel 8 中运行迁移:SQLSTATE[HY000] [2002] php_network_getaddresses:getaddrinfo 失败:名称或服务未知

我不明白为什么我的迁移在 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)

php mysql laravel laravel-8

4
推荐指数
1
解决办法
3315
查看次数

使用 Tailwind Css 在每个屏幕尺寸上保持完美的圆形十字

我想使用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。是否可以?谢谢。

小屏幕上的圆圈不对称

css geometry radial-gradients tailwind-css

1
推荐指数
1
解决办法
5306
查看次数