Valid PDII Dumps shared by ExamDiscuss.com for Helping Passing PDII Exam! ExamDiscuss.com now offer the newest PDII exam dumps, the ExamDiscuss.com PDII exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com PDII dumps with Test Engine here:
A Lightning Component has a section that displays some information about an Account and it works well on the desktop, but users have to scroll horizontally to see the Description field output on their mobile devices and tablets. Which option has the changes to make the component responsive for mobile and tablet devices?
Correct Answer: D
Recent Comments (The most recent comments are at the top.)
Igris - Jun 26, 2025
Option D is correct answer.
multipleRows="true": Allows wrapping to next line on small screens. size="12": Makes each item take full width on small devices. largeDeviceSize="6": Keeps them side-by-side (6+6) only on large screens.
SFlearner - Aug 27, 2023
A and C are wrong because of this rule: "If you specify the smallDeviceSize, mediumDeviceSize, or largeDeviceSize attributes, you must also specify the size attribute." D is correct, we are specifying the behaviour for large devices with largeDeviceSize attribute, and for smaller devices multipleRows=true should take care and do the job of breaking the row in 2.
Recent Comments (The most recent comments are at the top.)
Option D is correct answer.
multipleRows="true": Allows wrapping to next line on small screens.
size="12": Makes each item take full width on small devices.
largeDeviceSize="6": Keeps them side-by-side (6+6) only on large screens.
A and C are wrong because of this rule:
"If you specify the smallDeviceSize, mediumDeviceSize, or largeDeviceSize attributes, you must also specify the size attribute."
D is correct, we are specifying the behaviour for large devices with largeDeviceSize attribute, and for smaller devices multipleRows=true should take care and do the job of breaking the row in 2.
Option A is Right Answer