How do I create a div with no right or left margin in Dreamweaver?
i attempting create responsive website using dreamweaver bootstrap extension. create tables out of element bit div. warning, these novice questions. latest challenge:
i like:
- to add background image has 0 top, right, , left margin
- the background image repeat horizontally (not vertically)
- to know if possible build site tables within div containers preset without pushing containers out of wack , ruining responsiveness of site , if how , if not possible, how make div tags stay put them tables.
here link: http://www.graphicmechanic.info/soniabooker/doubletest.html. white bar top meant continuous bar across top no left , right margins.
thanks in advance assistance.
xonoboom wrote:
i like:
- to add background image has 0 top, right, , left margin
background images default have no margin applied margin on <body> tag
body {
margin: 0;
padding: 0;
}
xonoboom wrote:
- the background image repeat horizontally (not vertically)
use css:
background-image: repeat-x;
xonoboom wrote:
- to know if possible build site tables within div containers preset without pushing containers out of wack , ruining responsiveness of site , if how , if not possible, how make div tags stay put them tables.
i'm not @ sure how tables perform in responsive design can't of on point one. point 2 can addressed use of css margin/float applied <divs> position them want them. if using method first time it's steep learning curve.
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment