Responsive is a tag to indicate a generic responsive website or web application programming or design topic. It's a more generic tag than 'responsive-design', and it serves for situations when you're specifically writing about programming (usually html/css/js). The word 'responsive' itself refers to the ability of a web application/website to respond and adapt its dimensions and interactivity across a wide range of devices and screen sizes.
Questions tagged [responsive]
5039 questions
7
votes
8 answers
Responsive iframe with fixed div beneath it
Given the following DOM structure:
(See this JSFiddle for details and the styles I am already using)
How can I achieve the…

tyrondis
- 3,364
- 7
- 32
- 56
6
votes
4 answers
How to add padding or margin according to different screen sizes
I want to give padding or margin according to screen sizes.
Below is code and images of two different sizes screens with same padding.
This is my code:
Padding(
padding: const EdgeInsets.only(top: 160, left: 90, bottom: 20),
…

Arjun Mahar
- 317
- 1
- 4
- 11
6
votes
1 answer
Why is my img element always loading the biggest image from srcset
So, I'm trying to make a responsive image component that will load an appropriate size of image depending on the screen resolution/pixel density. As I understand it, the srcset attribute was designed for exactly this, but I can't get it to do what I…

Supperhero
- 911
- 1
- 7
- 24
6
votes
4 answers
Make table responsive on mobile devices using HTML/CSS
I have this table that is part of a larger email. When the user's device is a mobile phone, or small screen I want the table to go from 2 columns/2 rows, to 1 column 4 rows. Would like to use the least amount of code possible.