Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged that

Rss Feed Group items tagged

Jochen Burkhard

20 CSS3 Tutorials and Techiques for Creating Buttons - Speckyboy Design Magazine - 0 views

  •  
    ♻ Retweet In May last year we published an article entitled 22 CSS Button Styling Tutorials and Techniques, it proved to be pretty popular, and the most amazing thing about that post is that none of the tutorials even touch on the subject of CSS3.. What a difference a year makes! Of course CSS3 never rolled out last year, it has been around for a long time without ever entering mainstream web design. That was until last year when support arrived from the web browsers Safari, followed by Firefox and then Chrome. And CSS3 has been gaining momentum ever since.
Soul Book

The Incredible Em & Elastic Layouts with CSS - 0 views

  • Elastic design uses em values for all elements. Ems are a relative size, written like this: 1em, 0.5em, 1.5em etc. Ems can be specified to three decimal places like so: 1.063em. “Relative” means: They are calculated based on the font size of the parent element. E.g. If a <div> has a computed font size of 16px then any element inside that layer —a child— inherits the same font size unless it is changed. If the child font size is changed to 0.75em then the computed size would be 0.75 × 16px = 12px. If the user increases (or decreases) text size in their browser, the whole interface stretches (or shrinks.)
  • All popular browsers have a default font size of 16px. Therefore, at the default browser setting, 1em = 16px.
  • The <body> inherits it unless styled otherwise using CSS. Therefore 1em = 16px, 0.5em = 8px, 10em = 160px and so on. We can now specify any element size we need to using ems!
  • ...9 more annotations...
  • However, (gasp) IE has a problem with ems. Resizing text from medium (default) to large in IE5/6 would lead to a huge increase in font size rather than the gradual one expected. So another selector is needed to get IE to behave: html{ font-size:100%; }
  • Let’s give our <body> some more style, and center everything in the viewport (this will be important later for our content wrapper.) Our initial CSS ends up like this: html{ font-size: 100%; } body{ font-size: 1em; font-family: georgia, serif; text-align: center; color: #444; background: #e6e6e6; padding: 0; margin: 0; }
  • 1 ÷ 16 × 740 = 46.25em (1 ÷ parent font-size × required pixel value = em value)
  • While we're here, we might as well add some typographic goodness by selecting a basic leading and adding some vertical rhythm, with everything expressed in ems.
  • Set a 12px font size with 18px line height and margin for paragraphs
  • Dividing the desired line height (18px) by the element font size (12px) gives us the em value for line height. In this example, the line height is 1 and a half times the font size: 1.5em. Add line height and margin properties to the CSS: p{ font-size: 0.750em; line-height: 1.5em; margin: 1.5em; } Now the browser will say to itself, “Oh, line height and margin is set to 1.5em, so that should be 1.5 times the font size. What’s the font size, again? 12px? OK, cool, make line height and margin 1.5 times that, so 18px.”
  • To retain our vertical rhythm we want to set an 18px line height and margin. Easy: If the font size is 18px then 18px in ems is 1em! Let’s add the properties to the CSS (and make the font weight light:) h1{ font-size: 1.125em; line-height: 1em; margin: 1em; font-weight: 300; }
  • Jon, good article and very useful chartm but your text sizing method has one major drawback. If elements with font-sizes set in em’s are nested, i.e with lists, these elements inherit the font size. Therefore each child element will be 0.75em (or 75%) of the previous one: See an example here. (Would have posted the code put it was coming out really ugly!) I would recommend against using that method and setting the global font size in the body tag i.e. 'font-size:75%' for 12px. Then only setting different font-sizes where necessary.
  • Thanks Will, interesting point, but that is solved with a simple font-size:1em on the first child. Retaining the default ensures that even images are sized correctly in ems. IE (surprise) will compute incorrectly against a parent length equivalent to 12px. My preference born out by some minor but painful computed size errors in complex layouts is not to adjust the body, and only set font size where necessary for specific elements.
  •  
    A nice and simple explanation of using EMs to make elastic layouts
Jochen Burkhard

Web Developer's Guide: How to Speed Up Your Website - www.htmlgoodies.com - 0 views

  •  
    There was a time way back in this author's career when making web sites as fast as possible was almost as high a priority as making them look good. In today's Internet, the mantra is to make a web site as flashy as possible. As designers and developers, we tend to forget that there are a lot of people out there that still use dial-up or browse on slow Internet connections. It is easy to sit at home or work on a broadband connection and not worry about speed, but try going to a location that has slow connections or browse on a phone or portable device and you can quickly get impatient.
Inspirationfeed

55 Captivating Examples of Illustration Art - 0 views

  •  
    Some people say that, "A picture is worth a thousand words." This  is so true and we want to show you why. We have gathered some awesome art illustrations, that will totally inspire you. This collection contains many different art works, that are all beautiful. Please let us know what you think, b
Jochen Burkhard

An Overview of PHP Framework Guides for Developers | Onextrapixel - Showcasing Web Trea... - 6 views

  •  
    PHP is a widely used, powerful programming language that allows us to develop amassing web applications. Other scripting languages that can be used aside from PHP, are ASP and Ruby. However, PHP is still being implemented the most, and it has no plans of backing down. PHP's popularity is attributed to how easy it is to learn and use, in contrast to other scripting languages.
  •  
    PHP is a widely used, powerful programming language that allows us to develop amassing web applications. Other scripting languages that can be used aside from PHP, are ASP and Ruby. However, PHP is still being implemented the most, and it has no plans of backing down. PHP's popularity is attributed to how easy it is to learn and use, in contrast to other scripting languages.
Herb Tucker

PHP: Expressions - Manual - 0 views

  • (scalar values are values that you can't 'break' into smaller pieces, unlike arrays, for instance
  • Expressions are the most important building stones of PHP. In PHP, almost anything you write is an expression
  • The simplest yet most accurate way to define an expression is "anything that has a value"
  • ...16 more annotations...
  • PHP also supports two composite (non-scalar) types: arrays and objects. Each of these value types can be assigned into variables or returned from functions.
  • PHP is an expression-oriented language
  • Since assignments are parsed in a right to left order, you can also write '$b = $a = 5'
  • and that's the value of the assignment itself
  • A very common type of expressions are comparison expressions. These expressions evaluate to either FALSE or TRUE. PHP supports > (bigger than), >= (bigger than or equal to), == (equal), != (not equal), < (smaller than) and <= (smaller than or equal to). The language also supports a set of strict equivalence operators: === (equal to and same type) and !== (not equal to or not same type). These expressions are most commonly used inside conditional execution, such as if statements.
  • and is assigned back into $a,
  • The last example of expressions we'll deal with here is combined operator-assignment expressions
  • Adding 3 to the current value of $a can be written '$a += 3'
  • This means exactly "take the value of $a, add 3 to it, and assign it back into $a"
  • Any two-place operator can be used in this operator-assignment mode, for example '$a -= 5' (subtract 5 from the value of $a), '$b *= 7' (multiply the value of $b by 7), etc.
  • There is one more expression that may seem odd if you haven't seen it in other languages, the ternary conditional operator:
  • If the value of the first subexpression is TRUE (non-zero), then the second subexpression is evaluated, and that is the result of the conditional expression. Otherwise, the third subexpression is evaluated, and that is the value
  • Some expressions can be considered as statements. In this case, a statement has the form of 'expr ;' that is, an expression followed by a semicolon. In '$b = $a = 5;', '$a = 5' is a valid expression, but it's not a statement by itself. '$b = $a = 5;' however is a valid statement.
  • One last thing worth mentioning is the truth value of expressions. In many events, mainly in conditional execution and loops, you're not interested in the specific value of the expression, but only care about whether it means TRUE or FALSE. The constants TRUE and FALSE (case-insensitive) are the two possible boolean values.
  • Throughout the rest of this manual we'll write expr to indicate any valid PHP expression.
  • Functions are expressions with the value of their return value.
  •  
    Expressions defined and discussed with highlighting
awqi zar

PayPal X Developer Network: PayPal X DevZone: Web API power tools:  One tool ... - 5 views

  •  
    So what is YQL?  YQL looks like SQL but enables you to access live data from the Internet.  That definition doesn't really do it justice, however. The bigger point about YQL is that it includes many built-in bindings to various web APIs so that you can use almost every major web API in a consistent manner, with similar calls across the many possible APIs available to you.
Luciano Ferrer

The @Font-Face Rule and Implementation Tricks - 2 views

  •  
    "@font-face method is frees designers from the yoke of the standard palette of "web-safe" system fonts that have been used for many years. Surprisingly, however, this capability has been available in Internet Explorer since 1997. IE4 was the first browser to allow web fonts, but it did so with a proprietary format that prevented other browsers from following suit. Microsoft has since submitted its format to the W3C for consideration as a standard, but now that Firefox, Safari, Chrome, and Opera are all implemented now. So you can consider it pretty safe to use."
Moses Aaron

Few Things That You Must Know About Magento... - Magento Web News - 0 views

  •  
    Today, Magento has caught the attention of various eCommerce merchants as it is a leading eCommerce platform that stuffed with lots of features and functionalities. So, check out this blog and get huge information about a few things that you must to know about this platform.
richardlee1

Process of Software Testing - 0 views

  •  
    Software testing is a process of executing a program or a code to find out the bugs in the system. In this, the validation and verification are done on the system so that it can be sent to the user. Software testing is a process that revolves around the Software Development Life Cycle.
  •  
    Software testing is a process of executing a program or a code to find out the bugs in the system. In this, the validation and verification are done on the system so that it can be sent to the user. Software testing is a process that revolves around the Software Development Life Cycle.
Ahxn Amc

#1 Medical Websites With Optimized360 Company in Newport beach, CA - 0 views

  •  
    Optimized360 have designed the best medical websites for their clients that resulted into growing number of patients that they have never experienced before. Their professionals have worked with assorted medical doctors and attained the experience spread over the years that make them deliver their best..... If you want to read more just click on the link above for more info & details.
James Neilson

What Are The Beneficial Features That Make Short Term Loans Popular Monetary Choice? - 0 views

  •  
    What Are The Beneficial Features That Make Short Term Loans Popular Monetary Choice? Money is the most uncertain thing that can put one in the troubling situation at any point of time.
ukulelemononoke

Matching site design to your target demographic | Webdesigner Depot - 0 views

  •  
    When creating a website project, it's always important to think about the end users of the site. Frequently it's the case, however, that many designers focus too much on creating a site that will impress their clients, forgetting that it's the audience who really matter.
Laura Reed

GitHub - mgonto/restangular: AngularJS service to handle Rest API Restful Resources pro... - 0 views

  •  
    "Restangular is an AngularJS service that simplifies common GET, POST, DELETE, and UPDATE requests with a minimum of client code. It's a perfect fit for any WebApp that consumes data from a RESTful API."
  •  
    "Restangular is an AngularJS service that simplifies common GET, POST, DELETE, and UPDATE requests with a minimum of client code. It's a perfect fit for any WebApp that consumes data from a RESTful API."
  •  
    Arab Model Escort In Dubai // Arab Escorts Service // Call Girls In Dubai //
Ahxn Amc

How to Make Your Healthcare Site Work for You? - 0 views

  •  
    Having a simple medical website is not the guarantee that your practice will grow, and your medical office will attract new patients. You need to keep in mind that your healthcare website should be fast, and it includes all crucial elements that could boost your practice. Learn here about the eight ways to make your healthcare site work for you.
tarikatech

Get Custom eCommerce Web Design for the Website You Want! - 1 views

  •  
    The highly competitive eCommerce market requires novelty of web designs that can come up at individual level. So it is always good to ask for custom eCommerce Web Design Services for your eCommerce website that would get you that 'different' look you always wanted.
gagepoon

Did you know UI UX design is driving online business on a wider scale? - 0 views

shared by gagepoon on 05 Feb 19 - No Cached
  •  
    There are so many apps and websites online that are easily accessible online or via various mediums. Some of them have turned out to be successful and running while other still have to reach an audience in the market to be known. It is always the look and feel or a website or an app that feels the user come back for more. This is why UX design and UI design have merits for the same. https://www.postboxcommunications.com/blog/know-ui-ux-design-driving-online-business-wider-scale/
  •  
    There are so many apps and websites online that are easily accessible online or via various mediums. Some of them have turned out to be successful and running while other still have to reach an audience in the market to be known. It is always the look and feel or a website or an app that feels the user come back for more. This is why UX design and UI design have merits for the same. https://www.postboxcommunications.com/blog/know-ui-ux-design-driving-online-business-wider-scale/
petergalle

7 Trends That Will Define Future of Web Development in 2019 | VT Netzwelt - 0 views

  •  
    Staying aware of the ever-changing web development landscape is not an easy task. With the introduction of Artificial Intelligence (AI) in web development, it is getting on the nerves of many to keep up with the pace. Also, with the introduction of Progressive Web Applications (PWA), it is possible that in the future PWA will replace native mobile applications. But now it's not just about PWA. Technologies like React Native, IoT has given us a glimpse of the future that now web development is not just about the browser but instead it can be rendered on any kind of technologies. JavaScript language is now being used for server-side coding which depicts that in the future web technologies will allow us to develop applications on any type of platform. However, it has always been difficult to predict the latest trends as we don't know which trends would set a benchmark and which trends would be dead. Being one of the leading App Development Company it becomes important for us to explore each and every new technology so that we can serve our customers in the best way. So in this article, we will be exploring all the latest technologies which we are already working on and the technologies on which we are playing in the R&D lab that we think will surely improve the development process, enable automation of the work and boost productivity.
yoyoloit

How to Earn Income on YouTube WITHOUT Making Videos - 0 views

  •  
    Generate lots of income from YouTube without even having to make your own videos. Requirements All you need is a computer, internet connection, and a bank account. Description Imagine making an extra $1,000, $2,000, or even $10,000 a month by uploading YouTube videos you didn't even make. Inside this course, you will learn how I make money on YouTube without even making videos. With this simple and proven system, I teach you how I made $110,704 in profit over the last 365 days, but I really only started utilizing the tactics and strategies taught in this course in December of last year. This year, I made an amazing $16,355.53 in ONE MONTH, September 2018. I have two YouTube channels I do this with, and each one brings in about $200-300 a day and have made as much as $1,000 in a SINGLE DAY. In this course, I show you the entire process of finding videos, optimizing them, and 2 secrets that can multiply your revenue by up to 10X. Also, I share the top niches to do this in and how you can start taking advantage of YouTube today! I'm not saying in any way that you will make this kind of money with YouTube by simply uploading videos, however I share the methods that have worked for me.
gagepoon

Remake The World With Digital Transformation - 0 views

shared by gagepoon on 03 Jan 19 - No Cached
  •  
    As AI adoption increases, PostBox Communications constantly implementing digital transformation strategies that help to owns the power and potential to transform any enterprise into an efficient platform that leverages the adequate amount of digitalization needed. https://www.postboxcommunications.com/digital-transformation.html
  •  
    As AI adoption increases, PostBox Communications constantly implementing digital transformation strategies that help to owns the power and potential to transform any enterprise into an efficient platform that leverages the adequate amount of digitalization needed. https://www.postboxcommunications.com/digital-transformation.html
« First ‹ Previous 121 - 140 of 3738 Next › Last »
Showing 20 items per page