Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Why use a style image attribute rather than just coding width and height for each image?
Because using style you can use the same width and height in different images. This is very useful if you want all to be the same size. When you want to change something you only have to change one time,not all your images.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 months ago.
Improve this question
I don't want to change div tag height and width want to adjust text by using scroll or any other property, for long text or big paragraph.
Well you can add a property overflow-y:scroll.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Hello I would like to know why in certain width screen the overflow is hidden ? Are there any solutions ?
Thank you
http://4s.bnd-dev.fr/
image 1
image 2
In order to overlap the left side block with the text marquee, you need to set a rule with margin. You have this rule in the selector - .elementor-62 .elementor-element.elementor-element-25c4ac8>.elementor-widget-container, and you can see it if you click on <div class = "elementor-widget-container">.
And this is the very rule that needs to be changed - margin: -55px -7px -40px -103px;.
In order to move your marquee, you need to change the 4th parameter of this rule, i.e. -103px.
If you have any questions, please contact.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a requirement like, I want display one letter in a bigger size Ex: focus. in this I want to display 'O' in bigger size. I tried with font tag and it is not working. Please suggest a solution in HTML.
If I use p tag with style attribute, word is breaking.
<div>F<span style='font-size:1.5em;'>o</span>cus</div>
try ..
f<strong>o</strong>cus
or
f<span class="big">o</span>cus
in css
.big{font-size:32px}
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
This is probably easy to you guys but I am having some trouble with the aligning my images so they're even and not one higher than the other. Please see screenshot..
http://puu.sh/3Sgy7.png
Code (I don't use CSS):
<img src="images/paypal.png" title="We accept PayPal!"/>
<img src="images/windows.png" title="Windows Server 2008 R2" />
I want them to be on the same line and even.
Thanks.
Float both images left and make sure there is enough width to fit them side by side.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I read that the align attribute of <img> is deprecated in HTML 4.01. I'm just curious about one thing, the align attribute does the same thing as CSS float?
The align attribute does distinctly different things depending on what value you give it. Some of those things have been replaced by float, others by vertical-align.