We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

ვრცლად

Rendering bug with absolutely positioned button tags

  • 1 პასუხი
  • 1 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 6 ნახვა
  • ბოლოს გამოეხმაურა cor-el

I'm using Firefox 10.0.1 and I've found a bug regarding button elements that are absolutely positioned. The problem is setting both the right and left CSS attributes does not affect the width of the button as it should.

Here is some example code to show what I mean (the forum is mangling the html, hopefully you can get the gist of it):

<html>
	<body>
		<div style="width: 500px; position: relative;">
			<button style="position: absolute; left: 0; right: 0;">Test</button>
		</div>
	</body>
</html>

In all other browsers the button will be 500px wide. In Firefox, it will fit to the text.

I'm using Firefox 10.0.1 and I've found a bug regarding button elements that are absolutely positioned. The problem is setting both the right and left CSS attributes does not affect the width of the button as it should. Here is some example code to show what I mean (the forum is mangling the html, hopefully you can get the gist of it):<br /> <br /> <pre><nowiki><html> <body> <div style="width: 500px; position: relative;"> <button style="position: absolute; left: 0; right: 0;">Test</button> </div> </body> </html></nowiki></pre> In all other browsers the button will be 500px wide. In Firefox, it will fit to the text.

ჩასწორების თარიღი: , ავტორი: cor-el

ყველა პასუხი (1)

Why don't you give that button a width:100% if you want it to take the full width of that DIV container?