InterviewSolution
Saved Bookmarks
| 1. |
Consider two classes in style.Css. What will be the padding-right assigned to the div element if both the classes are given to the same div element? Style.Css .A{ padding: 0px 5px 0px 0px; } .B{ padding-right:15px; } index.Html this is a div element |
|
Answer» Using HTML to Add PaddingClick Edit.Switch to HTML Editor.Locate the HTML CODE for the IMAGE(s) you'd like to ADJUST. ...Locate the image's STYLE attribute; if the image doesn't have one, you can add one by typing style="" after img.Within the quotation marks, add PADDING: 10px; ... |
|