skip to Main Content

How to add background image in laravel 9

I am trying to add a background image for my website in Laravel 9.51. I've used this in my css file: body { background-image: url("background.jpg"); } But it doesn't work. Also tried: body { background-image: url({{asset('background.jpg')}}); } but it doesn't…

VIEW QUESTION

how do i align the icon totally in between the circular button? – Flutter

Container( height: 55, width: 55, decoration: const BoxDecoration( shape: BoxShape.circle, border: Border.symmetric( horizontal: BorderSide( color: Colors.black, width: 2.0, style: BorderStyle.solid, ), vertical: BorderSide( color: Colors.black, width: 2.0, style: BorderStyle.solid, ), ), boxShadow: [ BoxShadow( color: Colors.black, offset: Offset(3.5, 3.5), blurRadius:…

VIEW QUESTION
Back To Top
Search