skip to Main Content

Html – Doesn't apply media for ".nav__btn" class

please explain this problem; I wanna ".nav__btn" class display's be none where min-width: 768px; but it doesn't work --------------------Media Code------------------------ @media (min-width: 768px) { .nav__btn { display: none; } } -------------------------Styles Code----------------------- .nav__btn { width: 5.5rem; height: 5.5rem; display: flex;…

VIEW QUESTION

Flutter button alignment

I am very new to Flutter development. I am trying to make a button that would be on the bottom right of the page, but it is not working. import 'package:flutter/material.dart'; class GoBack extends StatelessWidget { const GoBack({required this.onGoBack, super.key});…

VIEW QUESTION
Back To Top
Search