[제나플러스] Inputs vs Buttons > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[제나플러스] Inputs vs Buttons

페이지 정보

본문

Inputs vs Buttons

So, here’s your standard submit button markup:

<input type="submit" value="Submit" />

And it looks like this across the three brothers:

Input Submits

Meh. Here’s the markup used when creating a button element that submits:

<button type="submit">Submit</button>

And it looks like this :

Buttons

These buttons work and behave in exactly the same way as our counterparts above. In addition to submitting the form, you can make them disabled, add an accesskey or even specify a tabindex. Aside from the visual indifference Safari seems to have for them (it doesn’t put that forced aqua interface on it, which we’ll be able to use to our advantage), the coolest thing about the <button> tag is that you can put useful HTML elements inside them, like images:

<button type="submit"><img src="" alt="" /> Submit</button>

Which looks like this :

Buttons with Images

Nice. (Okay, they’re a little fugly, but I said they’re in need of a little love.) In fact, according to the W3C these special visual differences is exactly why the <button> elements were created.

Buttons created with the BUTTON element function just like buttons created with the INPUT element, but they offer richer rendering possibilities: the BUTTON element may have content. For example, a BUTTON element that contains an image functions like and may resemble an INPUT element whose type is set to “image”, but the BUTTON element type allows content.

The Button Element - W3C

And so here we were looking for a design solution and here our friends writing the giant handbook of the Internet had a piece of markup meant to help us with just such a problem. Convenient, yet unfortunate that most designers and developers don’t even know the element exists. Now, before I made the jump to replace all the image inputs in Wufoo with button elements, I decided that the markup and CSS would have to fulfill a couple of requirements.

The Requirements

  1. They had to look like buttons.

  2. They had to look the same across browsers.

  3. The styles I used for button needed to also be used with ones I might use with links (since interaction in Wufoo is always initiated with either a Form Submission or an Ajax Call from a link, these things probably sit next to each other and I needed them to have the same visual weight).

  4. The markup needed to be flexible and easy to change for uses in lots of different situations.

  5. I should be able to use icons and colors effectively to pass information about the kind of interaction that would be taking place.

With those challenges in place, I dove into the CSS and after solving some cross browser challenges, came up with the following (which you can also see all over Wufoo):

The Results


Nothing crazy. Simple, but effective. Now, what I love about this way of handling buttons is that I can use the 1000 icon arsenal from FAMFAMFAM to illustrate a ridiculous number of ideas and actions without having to generate something from Photoshop every single time I need something new. If we take a quick look at the markup, you’ll notice that the last two buttons up there are actually links:

<div class="buttons">
<button type="submit" class="positive">
<img src="/images/icons/tick.png" alt=""/>
Save
</button>

<a href="/password/reset/">
<img src="/images/icons/textfield_key.png" alt=""/>
Change Password
</a>

<a href="#" class="negative">
<img src="/images/icons/cross.png" alt=""/>
Cancel
</a>
</div>

The reason this is useful is because lots of actions in web applications are REST driven and so simply sending a user via a link to a specific URL will initiate something they need to do. Using styles that can work for both types of elements (links and buttons), gives us the flexibility to keep our means of interaction looking consistent and appropriate whether it’s being done with Ajax or a standard submission.

Just a quick aside, you may wonder why I’ve left the alt tags blank in those icon images. It may come as a surprise to some that while alt attributes are required on every image, actually describing them is not. Empty alt attributes are completely valid and help screenreaders know which information to effectively ignore, saving your users precious time when they’re trying to find the next appropriate actionable item. Because the icons are actually superfluous, I’d rather not waste the user’s time hearing about the image I used to visualize what’s going on. They’ll just hear “Submit” rather than “Checkmark Submit”, which would actually make things a little confusing.

추천0

댓글목록

등록된 댓글이 없습니다.

Total 285건 8 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 추천 날짜
110 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 11542 0 12-17
109 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 12145 0 12-17
108 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 11942 0 12-17
107 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 14389 0 12-10
106 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 11636 0 11-28
105 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 14068 0 11-28
104 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 12029 0 11-28
103 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 14331 0 11-28
102 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15346 0 11-28
101 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 13397 0 11-28
100 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 11974 0 11-28
99 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 10310 0 11-18
98 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 12198 0 11-18
97 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 12119 0 11-18
96 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 13107 1 11-14
95 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 11862 0 11-13
94 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 12049 0 11-07
93 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15944 0 11-05
92 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 11314 0 11-03
91 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 15554 0 10-29
90 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 11558 0 10-27
89 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 13411 0 10-27
88 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 10656 0 10-15
87 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 12327 0 09-30
86 제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 13100 0 09-04

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5539-7787
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
1,106
어제
5,828
최대
7,259
전체
1,217,886
Copyright (c) 株式会社YHPLUS. All rights reserved.