Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I've gotten a task which I feel I really don't know the best approach for.
So here I am, asking for your help and opinions.
I've been assigned to create a form on a webpage (ASP.NET WebForms) with multiple textboxes
where people should fill in different measures. The textboxes are to be placed on top of a schematic sketch over the measured object in question, hence the textboxes won't be positioned in a straight vertical alignment but can be
The way I've done it so far is by having it grouped as follows:
Div with the background image (relative positioning)
Div with measurement texbox (absolute positioning)
Now, while this works, is there another way of achieving this or is this the best way?
I haven't dabbled to much in HTML5 and maybe there are something that can be utilized there?
Your help and opinions are greatly appreciated.
Your approach is common practice and definitely what most people would advise. I don't think HTML 5 has anything new to offer here.
Related
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 4 years ago.
Improve this question
Is it possible to scrape data automatically from websites that require a validation code each time a webpage is accessed? Such as the case when the website shows you a picture of the code and asks you to enter what is shown in the picture. I'm using the rvest package. Is this possible to do?
What you're trying to do is beat CAPTCHAs. That's possible but very hard. This is a spammer's hardest job - to come up with an algorithm smart enough to fill out those fields correctly. It's not something you're supposed to do, the whole point of those validation codes is to prevent access from non-humans. If you're smart and motivated enough to figure out how to answer those questions programatically, you can probably make more money doing that than whatever you're trying to do :)
Some websites offer a direct API, which is the way you're supposed to interact with their data. But getting past a CAPTCHA by scraping is not an easy deed.
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
What are the completely new things you can do with Flexbox which you wouldn't be able to do before in any way using only CSS (without markup changes). I understand Flexbox makes many layout issues much more straightforward and easier to maintain, but am also interested in knowing what unique features it brings that were completely impossible before. After reading some articles I still can't crystallise any thorough list in my mind, so far being able to come up only with 2:
Layout mixing items with fixed and relative sizes. In many cases it could be done using calc function (though it will quickly become messy), but I think some borderline cases can't be make up for without adding extra markup (or am I wrong an it can?)
Displaying things in the order completely independent from the source order
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 years ago.
Improve this question
Some one told me that some of designs doesn't support grid system layout like bootstrap, foundations etc, so i am not sure what thing need to analysis in design before to get started any, i know bootstrap this is 12 columns grid system but not sure how to analysis for example i have attached a image of a web design can any body explain me how i can analysis this before get started.
Also client is talking about to make it 1600px on large view.
Image linke
To analysis with design you can see the section how much they section have each section should have one grid with for example with bootstrap you can make 12 columns theme and your theme is with two section this mean this two columns theme. If you want more help please ask.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
EDIT : Question closed, see webmasters.stackexchange:
https://webmasters.stackexchange.com/questions/43038/responsive-design-best-practice-duplicate-html-elements-for-media-querying-and/43100#43100
I have a page with, in order of html appearance, a figure tag, headgroup tag, and an article tag.
In order to make a page's design responsive using media queries, I need a different order for elements, so the image appears after the title.
The simplest solution I can think of is cloning the headgroup tag in the source code and place the copy before the figure tag, thus making it possible to show/hide the appropriate tag according to viewport size.
But I have the feeling this is not ideal SEO-wise.
My question is simple:
Does this simple technique really have an impact on SEO?
Is there an html attribute to declare duplicate elements in a page?
Is there another recommended solution? Best practice?
Thanks in advance for any advised input!
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
There are tons of resources on how to program using the APIs of various widget toolkits but I can't seem to find much in the way of a tutorial on how to create widget toolkits themselves or how they work n detail. They are basically just black boxes to me right now.
There is some info on QT:
http://qt-project.org/wiki/Category:QtInternals
but it seems quite specific to QT and not geared towards general theory.
Could anyone point me to some resources?
Thanks for reading
There are powerpoint presentaion slides on the following link:
http://aplcenmp.apl.jhu.edu/~davids/605741/handouts/6_SWT_Programming.pdf
Also you may have a look on pdf given on the following link:
http://www.loria.fr/~dutech/DDZ/SWT.pdf
It would have been great to know which programming language you are using (or you'll use) to develop widgets.
Anyways,there is a link which shows the basic concepts behind widgets and also their creation:
http://star.pst.qub.ac.uk/idl/Widget_Programming_Concepts.html
Go through the tutorial/description to see if it meets your need.
Hope it'll help you.